Running Your First Program Β· MagiScript
In this section, we’ll guide you through the process of running your very first MagiScript program.
Steps
- Open the MagiScript editor and connect your Atom. Follow the Editor Basics guide if you need more details.
- Once connected, you can write your first script in the editor provided.
- And let’s start with a very basic program. Copy and paste the code below into the editor. You can use the the tiny copy button appears at the top right corner of the box to copy the code. If you don’t want to copy, click on the App Store button, and select loading the “Blinky (Simple)” mini-app.
- Press the Upload button (or if you are in the editor, Ctrl-S on Windows or Cmd-S on Mac) to compile and save the program to Atom.
- This code will start blinking the LED.
- Congratulations! You have just run your first MagiScript program.
function main() {
atom.led('rgb*');
}
What is this code about? We have declared a function called main
, this function will be called once your app starts (when the upload is complete). Then there’s an atom.led
call with the parameter of an rgb*
pattern. It will turn on the RGB led and set it to red, green, and blue for 50-50 ms, and repeat the pattern from the beginning.
Loading Example Code to the Editor
You can try examples by either clicking on the App Store in the Editor or by checking any of the examples in the sidebar on this page.
Persisting Mini-Apps
Once you finished developing a mini-app, you can “persist” it. It means that your mini-app will be saved to Atom’s storage, and can be launched as any other mini-apps. To do this, just upload your code, and click on the Persist button. The persisted Atom mini-app can be assigned to a button and launched like built-in mini-apps (see Settings).
To manage (list, run, delete) persisted mini-apps, look for the “Archive” icon next to the Persist button. Click on it, and you will see the list of the available mini-apps. You can delete mini-apps you don’t need anymore.
If youβve configured a mini-app to automatically launch when you turn on Atom, and itβs causing issues, you can prevent it from starting by holding down the bottom-right button while powering on Atom.run
What's Next?
Now that you’ve successfully run a program, you’re ready to start exploring the capabilities of MagiScript. In the following sections, we’ll show you how to create your own mini-apps using MagiScript by examples and cover more advanced topics like variables, data types, and functions.
If you encounter any issues while running your MagiScript program, we are ready to help in theΒ MagiScript Facebook Group. Happy coding!
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