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

https://github.com/vstirbu/regio-camera

Regio middleware for Tessel camera module
https://github.com/vstirbu/regio-camera

Last synced: 8 months ago
JSON representation

Regio middleware for Tessel camera module

Awesome Lists containing this project

README

          

Regio middleware for Tessel camera module.

# Installation

```
npm install regio-camera
```

# Usage

```javascript
var regio = require('regio'),
camera = require('regio-camera'),
app = regio();

app.use('/camera', camera({
// provide the port where the cammera module is attached on tessel board
port: 'A'
}));

var server = app.listen(8080, function () {
console.log('server listening on', server.address().port);
});

```

# License

MIT