78module.exports =
function (RED) {
81 const path = require(
'path')
85 const execSync = require('child_process').execSync
87 const testCommand = path.join(__dirname, 'library-test.py')
88 const adcCommand = path.join(__dirname, '
ads1256.py')
89 const dacCommand = path.join(__dirname, '
dac8532.py')
90 const gpioCommand = path.join(__dirname, '
gpio.py')
98 RED.log.warn(
'waveshare-shield-adda-11010 : ' + RED._(
'waveshare-shield-adda-11010.errors.libnotfound'))
102 process.env.PYTHONUNBUFFERED = 1
104 function analoginput (n) {
105 RED.nodes.createNode(
this, n)
106 this.out = n.out ||
'out'
111 this.port_p = n.port_p
112 this.port_n = n.port_n
114 this.buffer = n.buffer
117 function inputlistener (msg, send, done) {
119 switch (node.port_p) {
121 out = execSync(adcCommand +
' --mode calibrationFSC').toString()
124 out = execSync(adcCommand +
' --mode calibrationOFC').toString()
127 out = execSync(adcCommand +
' --mode analog --port_p ' + node.port_p +
' --port_n ' + node.port_n +
' --gain ' + node.gain +
' --rate ' + node.rate +
' --buffer ' + node.buffer +
' --sdcs ' + node.sdcs).toString()
131 node.status({ fill:
'red', shape:
'ring', text:
'waveshare-shield-adda-11010.status.not-running' })
132 RED.log.warn(
'waveshare-shield-adda-11010 : ' + RED._(
'waveshare-shield-adda-11010.errors.ads1256failure'))
134 const scaledOut = Number(out) / 1677721.5
141 if (node.scale ===
'voltage') {
142 msg.payload = Number(out) / 1677721.5 / node.gain
144 if (node.scale ===
'millivolt') {
145 msg.payload = scaledOut * 1000.0 / node.gain
147 if (node.scale ===
'fraction') {
148 msg.payload = Number(out) / 8388607.0
150 if (node.scale ===
'percentage') {
151 msg.payload = Number(out) / 83886.07
153 if (node.scale ===
'counts') {
154 msg.payload = Number(out)
156 if (node.port_p ===
'fsc') {
157 msg.payload = Number(out)
159 if (node.port_p ===
'ofc') {
160 msg.payload = Number(out)
163 if (RED.settings.verbose) { node.log(
'analog out: ' + msg.payload) }
164 node.status({ fill:
'green', shape:
'dot', text: msg.payload.toString() })
168 if (allOK ===
true) {
170 node.on(
'input', inputlistener)
172 node.status({ fill:
'grey', shape:
'dot', text:
'waveshare-shield-adda-11010.status.not-available' })
173 node.on(
'input', function (msg) {
174 node.status({ fill:
'grey', shape:
'dot', text: RED._(
'waveshare-shield-adda-11010.status.na', { value: msg.payload.toString() }) })
178 node.on(
'close',
function (done) {
179 node.status({ fill:
'grey', shape:
'ring', text:
'waveshare-shield-adda-11010.status.closed' })
183 RED.nodes.registerType(
'analoginput', analoginput)
185 function analogoutput (n) {
186 RED.nodes.createNode(
this, n)
190 this.out = n.out ||
'out'
193 function inputlistener (msg, send, done) {
194 let out = Number(msg.payload)
195 if (node.scale === 'voltage') {
196 if (node.vref ===
'vref-33') { out = 19859.4 * out };
197 if (node.vref ===
'vref-50') { out = 13107.2 * out };
199 if (node.scale ===
'millivolt') {
200 if (node.vref ===
'vref-33') { out = 19859400 * out };
201 if (node.vref ===
'vref-50') { out = 13107200 * out };
203 if (node.scale ===
'fraction') {
206 if (node.scale ===
'percentage') {
209 if (out < 0) { out = 0 };
210 if (out > 65535) { out = 65535 };
211 out = parseInt(out).toString()
212 if (RED.settings.verbose) { node.log(
'analogoutput out: ' + out) }
213 node.status({ fill:
'green', shape:
'dot', text: msg.payload.toString() })
215 execSync(dacCommand +
' --port ' + node.port +
' --output ' + out)
218 node.status({ fill:
'red', shape:
'ring', text:
'waveshare-shield-adda-11010.status.not-running' })
219 RED.log.warn(
'waveshare-shield-adda-11010 : ' + RED._(
'waveshare-shield-adda-11010.errors.dac8532failure'))
224 if (allOK ===
true) {
226 node.on(
'input', inputlistener)
228 node.status({ fill:
'grey', shape:
'dot', text:
'waveshare-shield-adda-11010.status.not-available' })
229 node.on(
'input', function (msg) {
230 node.status({ fill:
'grey', shape:
'dot', text: RED._(
'waveshare-shield-adda-11010.status.na', { value: msg.payload.toString() }) })
234 node.on(
'close',
function (done) {
235 node.status({ fill:
'grey', shape:
'ring', text:
'waveshare-shield-adda-11010.status.closed' })
236 execSync(dacCommand +
' --port A' +
' --output 0')
237 execSync(dacCommand +
' --port B' +
' --output 0')
242 RED.nodes.registerType(
'analogoutput', analogoutput)
244 function gpioinput (n) {
245 RED.nodes.createNode(
this, n)
246 this.out = n.out ||
'out'
251 function inputlistener (msg, send, done) {
258 out = execSync(adcCommand +
' --mode digitalIn --pin ' + node.port).toString()
264 out = execSync(gpioCommand +
' --pin ' + node.port).toString()
269 node.status({ fill:
'red', shape:
'ring', text:
'waveshare-shield-adda-11010.status.not-running' })
270 RED.log.warn(
'waveshare-shield-adda-11010 : ' + RED._(
'waveshare-shield-adda-11010.errors.gpiofailure'))
272 msg.payload = Number(out)
274 if (RED.settings.verbose) { node.log(
'gpio input: ' + msg.payload) }
275 node.status({ fill:
'green', shape:
'dot', text: msg.payload.toString() })
278 if (allOK ===
true) {
280 node.on(
'input', inputlistener)
282 node.status({ fill:
'grey', shape:
'dot', text:
'waveshare-shield-adda-11010.status.not-available' })
283 node.on(
'input', function (msg) {
284 node.status({ fill:
'grey', shape:
'dot', text: RED._(
'waveshare-shield-adda-11010.status.na', { value: msg.payload.toString() }) })
287 node.on(
'close',
function (done) {
288 node.status({ fill:
'grey', shape:
'ring', text:
'waveshare-shield-adda-11010.status.closed' })
292 RED.nodes.registerType(
'gpioinput', gpioinput)
294 function gpiooutput (n) {
295 RED.nodes.createNode(
this, n)
297 this.out = n.out ||
'out'
301 function inputlistener (msg, send, done) {
302 let out = Number(msg.payload)
303 if (out < 0) { out = 0 };
304 if (out > 1) { out = 1 };
305 out = parseInt(out).toString()
306 if (RED.settings.verbose) { node.log(
'gpio output: ' + out) }
307 node.status({ fill:
'green', shape:
'dot', text: msg.payload.toString() })
314 execSync(adcCommand +
' --mode digitalOut --pin ' + node.port +
' --output ' + out)
320 execSync(gpioCommand +
' --pin ' + node.port +
' --output ' + out)
325 node.status({ fill:
'red', shape:
'ring', text:
'waveshare-shield-adda-11010.status.not-running' })
326 RED.log.warn(
'waveshare-shield-adda-11010 : ' + RED._(
'waveshare-shield-adda-11010.errors.gpiofailure'))
331 if (allOK ===
true) {
333 node.on(
'input', inputlistener)
335 node.status({ fill:
'grey', shape:
'dot', text:
'waveshare-shield-adda-11010.status.not-available' })
336 node.on(
'input', function (msg) {
337 node.status({ fill:
'grey', shape:
'dot', text: RED._(
'waveshare-shield-adda-11010.status.na', { value: msg.payload.toString() }) })
341 node.on(
'close',
function (done) {
342 node.status({ fill:
'grey', shape:
'ring', text:
'waveshare-shield-adda-11010.status.closed' })
346 RED.nodes.registerType(
'gpiooutput', gpiooutput)