Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 1x | // this module is used to set up the interchange object with different
// configurations
module.exports = {
fw: {
'name': 'test_firmware',
'deviceID': 0x01,
'creatorID': 0x00,
'repo': 'github',
'firmata': true
},
fw_backpack: {
'name': 'test_firmware',
'deviceID': 0x01,
'creatorID': 0x00,
'repo': 'github',
'firmata': false,
'address': 0x27
},
options: {
board: 'nano',
port: '/dev/dummy',
firmata: true,
i2c_address: undefined,
useFirmata: true,
firmataName: ''
},
options_no_port: {
board: 'nano',
port: '',
firmata: true,
i2c_address: undefined,
useFirmata: true,
firmataName: ''
},
options_backpack: {
board: 'nano',
port: '/dev/dummy',
i2c_address: undefined
}
}
|