Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dawee/moonchild
Lua VM :crescent_moon: for Arduino
https://github.com/dawee/moonchild
arduino avr lua
Last synced: about 2 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 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-08T12:41:24.000Z (almost 8 years ago)
- Last Synced: 2024-11-14T14:52:15.105Z (about 2 months ago)
- Topics: arduino, avr, lua
- Language: C
- Homepage:
- Size: 772 KB
- Stars: 8
- Watchers: 3
- 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
```