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

Spotted Dice

About Spotted Dice

The Spotted Dice support of Atom remote in MagiScript allows developers to connect your Spotted Dice to Atom, and control the watch using commands.

Connecting To Your Spotted Dice

To connect Atom to a Spotted Dice, you need to use the spotted.connect method.

If Atom is not yet connected to a Spotted Dice device, it will start searching for it and then connect. If a Spotted Dice device is already connected, but the specified name is different, Atom will disconnect from the Spotted Dice device, and start searching for the specified name.

You can use theΒ * character to connect to any available Spotted Dice device.

The method is flexible regarding its parameters. Let’s review the possible options.

Connecting without a Device Name

This is the recommended way to connect, as this way you can share your code and no change will be necessary.

				
					spotted.connect();
				
			

You can configure a default Spotted Dice device ID in the Atom Editor Settings. By default, it is *, which means it will connect to the first Spotted Dice device it finds.

Connecting by Specifying a Device Name

You can pass a Spotted Dice device ID as the first parameter, and Atom will connect to it.Β For example, to connect to a Spotted Dice with the ID “Spotted-166666”, you would use the following command:

				
					spotted.connect('Spotted-166666');
				
			

This is the legacy way, we recommend using it only if you have a specific use case.

Connecting by Specifying a Device Name and a Callback

As a second parameter, you can specify a callback function. It will be called when Atom successfully connects to the Spotted Dice device. It will be called immediately if Atom is already connected to a Spotted Dice.

				
					spotted.connect('Spotted-166666', connected);

function connected(event) {
  console.log('Spotted Dice connected.');
}
				
			
When a Spotted Dice is connected, then an event will be triggered. Both the onEvent function, and the callback will be called with the event details.

				
					spotted.connect('Spotted-166666', connected);

function connected(event) {
  console.log('Spotted Dice connected.');
}
				
			

Using the spotted.connect Method

The best way to connect is by adding this call to the beginning of theΒ main function, which runs when the code is loaded.

				
					function main() {
  spotted.connect();
  // ...
}
				
			

Disconnecting your Spotted Dice

To disconnect your Spotted Dice, simply call the disconnect method. It will disconnect the active Spotted Dice device.

				
					spotted.disconnect();
				
			

You can also specify by it’s name which device you would like to disconnect:

				
					spotted.disconnect('Spotted-036666');
				
			

Querying the Connected Spotted Dice

You can query the Bluetooth name (ID) of the Spotted Dice device(s) Atom connected to. The id method gives you the active device’s ID, while the ids method returns an array with the Spotted Dice devices Atom connected to.

				
					spotted.id(); // the active Spotted Dice device
spotted.ids(); // all the Spotted Dice devices Atom connected to
				
			

You can query the connected Spotted Dice devices as a list of device objects as well using the list method.

				
					const devs = spotted.list();
for (let i = 0; i < devs.length; i++) {
  console.log(devs[i].id, devs[i].battery);
}
				
			

If more than one Spotted Dice device is connected, you can set one of them to active with the select method. Messages will be sent to this unit.

				
					spotted.select('Spotted-036666');
				
			

Battery Percentage

The battery level of Spotted Dice can be queried with the battery method. It reports a number between 0 and 100. It is checked when Atom connects to the device, and is subsequently updated every other minute.

				
					const percentage = spotted.battery();
console.log(Spotted Dice battery level: ${percentage}%);
				
			

Conclusion

The Spotted Dice support of Atom remote in MagiScript provides a convenient way for developers to connect their Spotted Dice to Atom and control its functions. By following the steps outlined in this documentation, you can easily connect to your Spotted Dice and set its time using MagiScript.

Die Color

				
					spotted.color();
				
			

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

πŸ“ƒ Quantum

πŸ“ƒ Teleport

πŸ“ƒ Spotted Dice

πŸ“ƒ SB Watch

πŸ“ƒ IARVEL Watch

πŸ“ƒ Fossil Watch

πŸ“ƒ Cosmos Printer

πŸ“ƒ PeriPage Printer

πŸ“ƒ ATC Remote

πŸ“ƒ Labko Scrabble

πŸ“ƒ 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