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

https://github.com/webduinoio/webduino

🛠 Web components for Webduino
https://github.com/webduinoio/webduino

javascript webcomponent webduino

Last synced: 8 months ago
JSON representation

🛠 Web components for Webduino

Awesome Lists containing this project

README

          

# webduino

Web components for Webduino

## Installation

```Shell
$ bower install webduino
```

## Usage

Insert webduino web-components and polyfill:

```html

```

Use it in your html:

```html

```

Control it with javascript:

```javascript
window.addEventListener('WebComponentsReady', function() {
var board = document.getElementById('board'),
led = document.getElementById('led');

board.on('ready', function () {
led.on();
});
});
```

## API

_(coming soon...)_

## See Also

[webduino-js](https://github.com/webduinoio/webduino-js) (The javascript core that powers webduino)

## License

This project is licensed under MIT, please see [LICENSE](LICENSE) for more information.