https://github.com/dawee/moonchild
Lua VM :crescent_moon: for Arduino
https://github.com/dawee/moonchild
arduino avr lua
Last synced: 10 months ago
JSON representation
Lua VM :crescent_moon: for Arduino
- Host: GitHub
- URL: https://github.com/dawee/moonchild
- Owner: dawee
- Created: 2016-12-21T10:05:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T12:41:24.000Z (almost 9 years ago)
- Last Synced: 2025-03-27T04:41:31.839Z (10 months ago)
- Topics: arduino, avr, lua
- Language: C
- Homepage:
- Size: 772 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Moonchild
Lua VM :crescent_moon: for Arduino
## Install
```sh
npm install -g moonchild
```
## Blink led
```lua
while true do
light_on()
delay_ms(100)
light_off()
delay_ms(100)
end
```
## Deploy to Arduino (requires AVR toolchain)
```sh
moonchild build script.lua
make -C build deploy
```