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

https://github.com/nimacpp/rubyino

Translate ruby to arduino
https://github.com/nimacpp/rubyino

arduino ino nimacpp rb ruby rubyino teranslate

Last synced: 7 months ago
JSON representation

Translate ruby to arduino

Awesome Lists containing this project

README

        

# Rubyino
Translate ruby to arduino
## install with gem
``` gem install rubyino ```

### or

```
git clone https://github.com/nimacpp/Rubyino.git
cd Rubyino
bundle install
```
# use Rubyino
## start use
``` rb = Rubyino.new("namefile") ```
## for print
``` rb.puts "hello world" #=> Keyboard.print("hello world"); ```
## for delay
``` rb.delay 500 #=> delay(500); ```
## for translate
``` rb.ter # for give output ```