简体   繁体   中英

Running lua scripts on arduino ssh command shell

I have Intel Galileo board . I have inserted to it SD card with Linux image so I could connect to it with putty ssh. Now I can run Linux commands on the device itself with putty.

I want to know how i can make led blink using lua script , I want to execute the script on the device (in putty command line).

how do i do that ??

Just has you would do on a normal shell: lua -i will launch lua in interactive mode, that mean you can input code line by line and the interpreter will execute it.

Another possibility is us scp , this will use the SSH connection to move file, like a FTP but it will just work over any SSH connection by default

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM