JSPM

  • Created
  • Published
  • Downloads 69
  • Score
    100M100P100Q65652F
  • License MIT

This package can control Arduino with TypeScript!

Package Exports

  • edison

Readme

なんかいい感じの画像

Edison

Edison can control Arduino with TypeScript or JavaScript!

Documentation

Our documentation site is none now

If you have not yet installed the Arduino IDE ?

please click on the official site and install it.

How to use in WSL

Please read this article.

Installation

Install Edison your project

npm install edison

or

yarn add edison

Getting Started

import { SerialPort } from 'serialport'
import { board, createLed } from 'edison'

board.on('ready', (port: SerialPort) => {
  console.log('Board is ready!')
  const led = createLed(port, 12)
  led.blink(500)
})

Contributing

We love collaborating with folks inside and outside of GitHub and welcome contributions!

👉 I'll create developers role on this project as soon as possible.