Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```