21 lines
317 B
JavaScript
21 lines
317 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const gpio = require('gpio')
|
||
|
|
||
|
class Intval {
|
||
|
constructor () {
|
||
|
this._pin = {}
|
||
|
this._declarePins()
|
||
|
}
|
||
|
_declarePins () {
|
||
|
this._pin.four = gpio.export(4, {
|
||
|
direction: 'out',
|
||
|
interval: 100,
|
||
|
ready : () => {
|
||
|
console.info(`Set pin 4 to OUTPUT`)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = new Intval()
|