πŸ–¨οΈ COSMOS PRINTER
🚚 Shipping from 12 USD
πŸ’° DEALS OF THE DAY

Keyboard Media

About

With theΒ Media Keyboard you gain control over volume and music playback on your phone, compatible with various platforms including Spotify, Apple Music, and YouTube. Furthermore, certain apps can detect volume up/down key presses, ensuring compatibility. For example, SB Mote and selfie remotes send volume-up signals, so apps supporting them should be compatible with this keyboard, too.

The code:

				
					const mapping = [
  null,    '#VOL_UP',     null,
  '#PREV', '#PLAY_PAUSE', '#NEXT',
  null,    '#VOL_DOWN',   null,
  null,    '#MUTE',       null,
];

function onAtomButtonClick(keyCode, count) {
  const key = mapping[keyCode];
  if (!key) return;
  
  keyboard.send(key);
}

function onEvent(e) {
  if (e.source !== 'atom:button') return;

  const buttonId = parseInt(e.value);
  if (e.type === 'click' || e.type === 'longpress' || e.type === 'repeatpress') {
      return onAtomButtonClick(buttonId);
  }
  if (strSub(e.type, 0, 5) === 'click' && strLen(e.type) === 6) {
      const clickCount = parseInt(strCharAt(e.type, 5));
      for (let i = 0; i < clickCount; i++) {
          onAtomButtonClick(buttonId);
      }
  }
}
				
			

General

πŸ“ƒ First Steps

MagiScript Editor

πŸ“ƒ Basics

πŸ“ƒ Keyboard Shortcuts

πŸ“ƒ Running Your First Program

πŸ“ƒ App Store

πŸ“ƒ Atom Settings (Editor)

πŸ“ƒ Debugging Techniques

Examples

πŸ“ƒ Atom Time

🎞️ Time Practice

πŸ“ƒ Atom Pi (Pi Revelations)

πŸ“ƒ Atom Drum

🎞️ Atom Stack

πŸ“ƒ Atom Square

πŸ“ƒ Atom Level

πŸ“ƒ Atom THMPR

πŸ“ƒ Poker Hands

πŸ“ƒ Keyboard Numeric

πŸ“ƒ Keyboard NOKIA

πŸ“ƒ Keyboard Cursor

πŸ“ƒ Keyboard Media

πŸ“ƒ Keyboard Custom

Input/Output

πŸ“ƒ Buttons

πŸ“ƒ Vibration Motor

πŸ“ƒ RGB LED

πŸ“ƒ Devices

πŸ“ƒ PeekSmith

πŸ“ƒ SB Watch

πŸ“ƒ Fossil Watch

πŸ“ƒ PeriPage Printer

πŸ“ƒ Cosmos Printer

πŸ“ƒ Teleport

πŸ“ƒ Bluetooth Keyboard

πŸ“ƒ Bluetooth Mouse

πŸ“ƒ Timers

πŸ“ƒ Database

πŸ“ƒ Events

πŸ“ƒ System (exit, sleep, rand)

πŸ“ƒ Objects (card, time)

Language

πŸ“ƒ Summary

πŸ“ƒ Comments

πŸ“ƒ Variable Declarations

πŸ“ƒ Operators

πŸ“ƒ Control Flow

πŸ“ƒ Functions

πŸ“ƒ Numbers

πŸ“ƒ Strings

πŸ“ƒ Arrays

πŸ“ƒ Objects

πŸ“ƒ Uint8Array