July 2017
Beginner to intermediate
352 pages
7h 30m
English
What follows is a quick rundown of the most common Espruino commands. For a full list, check out the Espruino reference page.
Where parameters are surrounded by [ and ], they’re optional and can be left out.
This prints the given text or variable to the console. console.log is the standard JavaScript way of printing, and print is provided for convenience. Both commands are identical.
For example, a="Hello World";print(a) will write Hello World to the console, as would print("Hello World").
You can also supply multiple arguments that will all be printed, separated by spaces.
These variables are the pins that are connected to the onboard ...
Read now
Unlock full access