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
- Host: GitHub
- URL: https://github.com/vstirbu/regio-camera
- Owner: vstirbu
- License: mit
- Created: 2015-03-24T17:01:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-24T20:39:44.000Z (over 10 years ago)
- Last Synced: 2025-01-13T07:21:27.780Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 133 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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