Cosmos Printer
About Cosmos Printer Support
The Cosmos Printer support of Atom remote in MagiScript allows developers to connect your Cosmos Printer to Atom, and control the printer using commands. You can:
- print text
- print a hand-drawn clock
- feed the paper
Connecting To Your Cosmos Printer
To connect Atom to a Cosmos Printer, you need to use the cosmos.connect
method.
If Atom is not yet connected to a Cosmos Printer device, it will start searching for it and then connect. If a Cosmos Printer device is already connected, but the specified name is different, Atom will disconnect from the Cosmos Printer device, and start searching for the specified name.
You can use theΒ *
character to connect to any available Cosmos Printer 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.
cosmos.connect();
You can configure a default Cosmos Printer device ID in the Atom Editor Settings. By default, it is *, which means it will connect to the first Cosmos Printer device it finds.
Connecting by Specifying a Device Name
You can pass a Cosmos Printer device ID as the first parameter, and Atom will connect to it.Β For example, to connect to a Cosmos Printer with the ID “Cosmos-166666”, you would use the following command:
cosmos.connect('Cosmos-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
cosmos.connect('Cosmos-166666', connected);
function connected(event) {
console.log('Cosmos connected.');
}
cosmos.connect('Cosmos-166666', connected);
function connected(event) {
console.log('Cosmos connected.');
}
Using the cosmos.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() {
cosmos.connect();
// ...
}
Disconnecting your Cosmos Printer
To disconnect your Cosmos Printer, simply call the disconnect method. It will disconnect the active Cosmos Printer device.
cosmos.disconnect();
You can also specify by it’s name which device you would like to disconnect:
cosmos.disconnect('Cosmos-036666');
Querying the Connected Cosmos Printer
You can query the Bluetooth name (ID) of the Cosmos Printer device(s) Atom connected to. The id method gives you the active device’s ID, while the ids method returns an array with the Cosmos Printer devices Atom connected to.
cosmos.id(); // the active Cosmos Printer device
cosmos.ids(); // all the Cosmos Printer devices Atom connected to
You can query the connected Cosmos Printer devices as a list of device objects as well using the list method.
const devs = cosmos.list();
for (let i = 0; i < devs.length; i++) {
console.log(devs[i].id, devs[i].battery);
}
If more than one Cosmos Printer device is connected, you can set one of them to active with the select method. Messages will be sent to this unit.
cosmos.select('Cosmos-036666');
Setting to Print a Hand-Drawn Clock
You can use the cosmos.printClock() command to print a hand-drawn clock with the Cosmos Printer. There are many ways to use it, see below:
cosmos.printClock(9); // prints 9:00
cosmos.printCLock(23); // prints 23:00
cosmos.printClock(42); // prints 4:02
cosmos.printClock(930); // prints 9:30
cosmos.printClock('9'); // prints 9:00
cosmos.printClock('23'); // prints 23:00
cosmos.printClock('42'); // prints 4:02
cosmos.printClock('930'); // prints 9:30
cosmos.printClock(9, 10); // prints 9:10
cosmos.printClock('7:12'); // prints 7:12
Printing Text
You can print text using the cosmos.print
method.Β
For example, if you want to print the text “Hello World”, you can use the following code:
cosmos.print('Hello World');
Feeding the Paper
The cosmos.feed() method advances the thermal printer’s paper by the specified number of lines. This helps ensure the paper is out of the printer.
cosmos.feed(10); // feed the paper by 10 lines
General
π First Steps
MagiScript Editor
π Basics
π Keyboard Shortcuts
π Running Your First Program
π App Store
π Debugging Techniques
Examples
π Atom Time
ποΈ Time Practice
π 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
π Operators
π Control Flow
π Functions
π Numbers
π Strings
π Arrays
π Objects
π Uint8Array