MACRO
The <MACRO>
section is where you will write perhaps most of your code. It is the entry point to your Simkey program. It is also the section that the code is in by default (unless you explicitly change into a different section).
You can look throughought this documentation to see many examples of how you can code within <MACRO>
. Here's a simple example from early on:
<MACRO> # This is not needed #
@delay [50,50] # First argument is `hold`, second is `wait` #
<100>abc<100> # Presses a,b,c then sleeps for 100ms, releases a,b,c then sleeps for 100ms #
<100>abc # Presses a,b,c then sleeps for 100ms, releases a,b,c then sleeps for 50ms (from default) #