Hello World
Here’s a simple “Hello World” example script for USB Nova. It’s designed to open Notepad on a Windows computer and type “Hello World”.
A great starting point for beginners to get familiar with USB Nova scripting. You can modify and expand upon this script to create more complex behaviors.
GUI ropens the Run dialog on Windows (Win + R).STRING notepadtypesnotepadinto the run field.ENTERpresses Enter to launch the application.STRING Hello Worldtypes the text into the opened editor.DEFAULTDELAYsets a baseline delay between typed characters.DELAYinserts explicit pauses where needed. Feel free to adjust the timing based on your target system’s responsiveness.- You can use
REMor#for comments (both are common in simple script dialects, use whichever your firmware accepts).
# This is a simple Hello World Example ScriptDEFAULTDELAY 200DELAY 200GUI rSTRING notepadENTERDELAY 2000STRING Hello World