├── 01_led_sos ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ └── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── led-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── ltc2309 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── mcp23017 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ └── pca9685 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ └── index.js ├── src │ └── index.js └── test │ └── led_sos_2_test.js ├── 02_colorful_led ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── ky-016 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ └── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── led-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── ltc2309 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── mcp23017 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ └── pca9685 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ └── index.js ├── src │ └── index.js └── test │ └── led_colorful_test.js ├── 03_responder_lcd ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── lcd1602-pcf8574a-hd44780 │ │ ├── README.md │ │ ├── driver.json │ │ ├── layout.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── hd44780 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pcf8574 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ └── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── led-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── ltc2309 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── mcp23017 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ └── pca9685 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ └── index.js ├── src │ └── index.js └── test │ └── test.js ├── 04_humiture_LCD ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── dht11 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── lcd1602-pcf8574a-hd44780 │ │ ├── README.md │ │ ├── driver.json │ │ ├── layout.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── hd44780 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pcf8574 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ └── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── led-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── ltc2309 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── mcp23017 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ └── pca9685 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ └── index.js ├── src │ └── index.js └── test │ └── test.js ├── 05_fan_relay ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── relay-1c │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ └── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── led-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── ltc2309 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── mcp23017 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ └── pca9685 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ └── index.js ├── src │ └── index.js └── test │ └── test.js ├── 06_opening_door ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── button-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── led-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── ltc2309 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── mcp23017 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pca9685 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ ├── servo_sg90_driver │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── test │ │ │ └── test.js │ └── sw-1801p │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── src │ │ └── index.js │ │ └── test │ │ └── sw-1801p_test.js ├── src │ └── index.js └── test │ └── test.js ├── 07_photosensitive_curtain ├── README.md ├── app.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── gy-30 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── button-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── led-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── ltc2309 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── mcp23017 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pca9685 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ └── servo_sg90_driver │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── src │ │ └── index.js │ │ └── test │ │ └── test.js ├── src │ └── index.js └── test │ └── test.js ├── 10_memory_lcd ├── README.md ├── app.json ├── package.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── joystick │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── test │ │ │ └── test.js │ ├── lcd1602-pcf8574a-hd44780 │ │ ├── README.md │ │ ├── driver.json │ │ ├── layout.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── hd44780 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pcf8574 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ └── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── led-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── ltc2309 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── mcp23017 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ ├── pca9685 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ │ └── ruff-v1-sys-usb │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ ├── 10-ruff-usb │ │ ├── index.js │ │ └── message.js ├── src │ └── index.js └── test │ └── test.js ├── 12_irrigation └── irrigation │ ├── README.md │ ├── app.json │ ├── package.json │ ├── ruff_modules │ ├── home │ │ ├── README.md │ │ ├── bld │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── mime.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ └── promise │ │ │ ├── README.md │ │ │ ├── bld │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ └── package.json │ ├── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── button-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── led-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── ltc2309 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── mcp23017 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── pca9685 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── ruff-v1-sys-usb │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── 10-ruff-usb │ │ │ ├── index.js │ │ │ └── message.js │ └── zigbee │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── ruff_modules │ │ └── ruff-mbd-v1 │ │ │ ├── README.md │ │ │ ├── board.json │ │ │ ├── package.json │ │ │ └── ruff_modules │ │ │ ├── button-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── led-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── ltc2309 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── mcp23017 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── pca9685 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── ruff-v1-sys-usb │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── 10-ruff-usb │ │ │ ├── index.js │ │ │ └── message.js │ │ ├── src │ │ └── index.js │ │ └── test │ │ └── test.js │ ├── src │ └── index.js │ └── test │ └── test.js ├── Bomb.js ├── README.md ├── bomb ├── README.md ├── app.json ├── boards │ └── ruff-mbd-v1 │ │ └── layout.json ├── layout.json ├── package.json ├── ruff_box.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── buzzer-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── ruff_modules │ │ │ └── t │ │ │ │ ├── README.md │ │ │ │ ├── bld │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── utils.d.ts │ │ │ │ ├── utils.js │ │ │ │ └── utils.js.map │ │ │ │ ├── package.json │ │ │ │ ├── ruff_modules │ │ │ │ └── promise │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bld │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ │ └── package.json │ │ │ │ └── t.d.ts │ │ └── src │ │ │ └── index.js │ ├── lcd1602-pcf8574a-hd44780 │ │ ├── README.md │ │ ├── driver.json │ │ ├── layout.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── hd44780 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pcf8574 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ ├── led_gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── test │ │ │ └── test.js │ ├── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── button-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── led-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── ltc2309 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── mcp23017 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── pca9685 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ └── index.js │ └── servo_sg90_driver │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ ├── src │ │ └── index.js │ │ └── test │ │ └── test.js ├── src │ └── index.js └── test │ └── test.js ├── joystick ├── README.md ├── driver.json ├── package.json ├── src │ └── index.js └── test │ └── test.js ├── night_lamp ├── README.md ├── app.json ├── package.json ├── ruff_modules │ ├── button-gpio │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── gy-30 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── ky-016 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ │ └── index.js │ ├── ruff-mbd-v1 │ │ ├── README.md │ │ ├── board.json │ │ ├── package.json │ │ └── ruff_modules │ │ │ ├── button-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── led-gpio │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── ltc2309 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── mcp23017 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ ├── pca9685 │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── index.js │ │ │ └── ruff-v1-sys-usb │ │ │ ├── README.md │ │ │ ├── driver.json │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── 10-ruff-usb │ │ │ ├── index.js │ │ │ └── message.js │ └── sound-01 │ │ ├── README.md │ │ ├── driver.json │ │ ├── package.json │ │ └── src │ │ └── index.js ├── src │ └── index.js └── test │ └── test.js └── servo_sg90_driver ├── README.md ├── driver.json ├── package.json ├── src └── index.js └── test └── test.js /01_led_sos/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Application 2 | -------------------------------------------------------------------------------- /01_led_sos/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/app.json -------------------------------------------------------------------------------- /01_led_sos/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /01_led_sos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_box.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /01_led_sos/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/src/index.js -------------------------------------------------------------------------------- /01_led_sos/test/led_sos_2_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/01_led_sos/test/led_sos_2_test.js -------------------------------------------------------------------------------- /02_colorful_led/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Application 2 | -------------------------------------------------------------------------------- /02_colorful_led/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/app.json -------------------------------------------------------------------------------- /02_colorful_led/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /02_colorful_led/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_box.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ky-016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ky-016/README.md -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ky-016/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ky-016/driver.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ky-016/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ky-016/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ky-016/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ky-016/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/src/index.js -------------------------------------------------------------------------------- /02_colorful_led/test/led_colorful_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/02_colorful_led/test/led_colorful_test.js -------------------------------------------------------------------------------- /03_responder_lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/README.md -------------------------------------------------------------------------------- /03_responder_lcd/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/app.json -------------------------------------------------------------------------------- /03_responder_lcd/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /03_responder_lcd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_box.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/src/index.js -------------------------------------------------------------------------------- /03_responder_lcd/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/03_responder_lcd/test/test.js -------------------------------------------------------------------------------- /04_humiture_LCD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/app.json -------------------------------------------------------------------------------- /04_humiture_LCD/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/layout.json -------------------------------------------------------------------------------- /04_humiture_LCD/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_box.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/dht11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/dht11/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/dht11/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/dht11/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/dht11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/dht11/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/dht11/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/dht11/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/src/index.js -------------------------------------------------------------------------------- /04_humiture_LCD/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/04_humiture_LCD/test/test.js -------------------------------------------------------------------------------- /05_fan_relay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/README.md -------------------------------------------------------------------------------- /05_fan_relay/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/app.json -------------------------------------------------------------------------------- /05_fan_relay/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /05_fan_relay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_box.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/relay-1c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/relay-1c/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/relay-1c/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/relay-1c/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/relay-1c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/relay-1c/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/relay-1c/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/relay-1c/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/src/index.js -------------------------------------------------------------------------------- /05_fan_relay/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/05_fan_relay/test/test.js -------------------------------------------------------------------------------- /06_opening_door/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/README.md -------------------------------------------------------------------------------- /06_opening_door/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/app.json -------------------------------------------------------------------------------- /06_opening_door/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /06_opening_door/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_box.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/servo_sg90_driver/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/servo_sg90_driver/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/servo_sg90_driver/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/servo_sg90_driver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/servo_sg90_driver/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/servo_sg90_driver/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/servo_sg90_driver/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/servo_sg90_driver/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/servo_sg90_driver/test/test.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/sw-1801p/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/sw-1801p/README.md -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/sw-1801p/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/sw-1801p/driver.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/sw-1801p/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/sw-1801p/package.json -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/sw-1801p/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/sw-1801p/src/index.js -------------------------------------------------------------------------------- /06_opening_door/ruff_modules/sw-1801p/test/sw-1801p_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/ruff_modules/sw-1801p/test/sw-1801p_test.js -------------------------------------------------------------------------------- /06_opening_door/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/src/index.js -------------------------------------------------------------------------------- /06_opening_door/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/06_opening_door/test/test.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/app.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /07_photosensitive_curtain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_box.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/gy-30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/gy-30/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/gy-30/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/gy-30/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/gy-30/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/gy-30/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/gy-30/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/gy-30/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/servo_sg90_driver/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/servo_sg90_driver/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/servo_sg90_driver/driver.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/servo_sg90_driver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/servo_sg90_driver/package.json -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/servo_sg90_driver/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/servo_sg90_driver/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/ruff_modules/servo_sg90_driver/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/ruff_modules/servo_sg90_driver/test/test.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/src/index.js -------------------------------------------------------------------------------- /07_photosensitive_curtain/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/07_photosensitive_curtain/test/test.js -------------------------------------------------------------------------------- /10_memory_lcd/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Application 2 | -------------------------------------------------------------------------------- /10_memory_lcd/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/app.json -------------------------------------------------------------------------------- /10_memory_lcd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/joystick/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/joystick/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/joystick/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/joystick/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/joystick/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/joystick/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/joystick/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/joystick/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/joystick/test/test.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js -------------------------------------------------------------------------------- /10_memory_lcd/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/src/index.js -------------------------------------------------------------------------------- /10_memory_lcd/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/10_memory_lcd/test/test.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Application 2 | -------------------------------------------------------------------------------- /12_irrigation/irrigation/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/app.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/bld/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/bld/index.d.ts -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/bld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/bld/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/bld/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/bld/index.js.map -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/mime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/mime.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/bld/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/bld/index.d.ts -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/bld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/bld/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/bld/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/bld/index.js.map -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/home/ruff_modules/promise/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/ruff_modules/zigbee/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/ruff_modules/zigbee/test/test.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/src/index.js -------------------------------------------------------------------------------- /12_irrigation/irrigation/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/12_irrigation/irrigation/test/test.js -------------------------------------------------------------------------------- /Bomb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/Bomb.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /bomb/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Application 2 | -------------------------------------------------------------------------------- /bomb/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/app.json -------------------------------------------------------------------------------- /bomb/boards/ruff-mbd-v1/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/boards/ruff-mbd-v1/layout.json -------------------------------------------------------------------------------- /bomb/layout.json: -------------------------------------------------------------------------------- 1 | { 2 | "board": "ruff-mbd-v1" 3 | } -------------------------------------------------------------------------------- /bomb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/package.json -------------------------------------------------------------------------------- /bomb/ruff_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_box.json -------------------------------------------------------------------------------- /bomb/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/index.d.ts -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/index.js.map -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/utils.d.ts -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/utils.js -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/bld/utils.js.map -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/bld/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/bld/index.d.ts -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/bld/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/bld/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/bld/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/bld/index.js.map -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/ruff_modules/promise/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/ruff_modules/t/t.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/ruff_modules/t/t.d.ts -------------------------------------------------------------------------------- /bomb/ruff_modules/buzzer-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/buzzer-gpio/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/layout.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/hd44780/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/lcd1602-pcf8574a-hd44780/ruff_modules/pcf8574/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/led_gpio/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /bomb/ruff_modules/led_gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/led_gpio/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/led_gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/led_gpio/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/led_gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/led_gpio/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/led_gpio/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/led_gpio/test/test.js -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Main Board V1 Metadata 2 | -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/servo_sg90_driver/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /bomb/ruff_modules/servo_sg90_driver/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/servo_sg90_driver/driver.json -------------------------------------------------------------------------------- /bomb/ruff_modules/servo_sg90_driver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/servo_sg90_driver/package.json -------------------------------------------------------------------------------- /bomb/ruff_modules/servo_sg90_driver/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/servo_sg90_driver/src/index.js -------------------------------------------------------------------------------- /bomb/ruff_modules/servo_sg90_driver/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/ruff_modules/servo_sg90_driver/test/test.js -------------------------------------------------------------------------------- /bomb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/src/index.js -------------------------------------------------------------------------------- /bomb/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/bomb/test/test.js -------------------------------------------------------------------------------- /joystick/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /joystick/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/joystick/driver.json -------------------------------------------------------------------------------- /joystick/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/joystick/package.json -------------------------------------------------------------------------------- /joystick/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/joystick/src/index.js -------------------------------------------------------------------------------- /joystick/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/joystick/test/test.js -------------------------------------------------------------------------------- /night_lamp/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Application 2 | -------------------------------------------------------------------------------- /night_lamp/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/app.json -------------------------------------------------------------------------------- /night_lamp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/gy-30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/gy-30/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/gy-30/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/gy-30/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/gy-30/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/gy-30/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/gy-30/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/gy-30/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ky-016/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ky-016/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ky-016/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ky-016/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ky-016/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ky-016/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ky-016/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ky-016/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/board.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/button-gpio/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/led-gpio/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ltc2309/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/mcp23017/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/pca9685/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/10-ruff-usb -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/index.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/ruff-mbd-v1/ruff_modules/ruff-v1-sys-usb/src/message.js -------------------------------------------------------------------------------- /night_lamp/ruff_modules/sound-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/sound-01/README.md -------------------------------------------------------------------------------- /night_lamp/ruff_modules/sound-01/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/sound-01/driver.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/sound-01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/sound-01/package.json -------------------------------------------------------------------------------- /night_lamp/ruff_modules/sound-01/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/ruff_modules/sound-01/src/index.js -------------------------------------------------------------------------------- /night_lamp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/src/index.js -------------------------------------------------------------------------------- /night_lamp/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/night_lamp/test/test.js -------------------------------------------------------------------------------- /servo_sg90_driver/README.md: -------------------------------------------------------------------------------- 1 | # Ruff Driver 2 | -------------------------------------------------------------------------------- /servo_sg90_driver/driver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/servo_sg90_driver/driver.json -------------------------------------------------------------------------------- /servo_sg90_driver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/servo_sg90_driver/package.json -------------------------------------------------------------------------------- /servo_sg90_driver/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/servo_sg90_driver/src/index.js -------------------------------------------------------------------------------- /servo_sg90_driver/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuffApps/ruff-tutorial/HEAD/servo_sg90_driver/test/test.js --------------------------------------------------------------------------------