The webiopi.js code omits the device name info. This results in identical
DeviceMonitor entries if multiple PiFaceDigital devices are configured.
Changing this
PiFaceDigital.prototype.toString = function() {
return "PiFaceDigital";
}
to
PiFaceDigital.prototype.toString = function() {
return this.name + ": PiFaceDigital";
}
corrects this problem.
Original issue reported on code.google.com by andreas....@googlemail.com on 28 Aug 2014 at 10:32
Original issue reported on code.google.com by
andreas....@googlemail.com
on 28 Aug 2014 at 10:32