nightscout
Version:
Nightscout acts as a web-based CGM (Continuous Glucose Monitor) to allow multiple caregivers to remotely view a patients glucose data in realtime.
23 lines (17 loc) • 392 B
JavaScript
;
function init() {
var runtime = {
name: 'runtimestate'
, label: 'Runtime state'
, pluginType: 'fake'
};
runtime.setProperties = function setProperties(sbx) {
sbx.offerProperty('runtimestate', function setProp ( ) {
return {
state: sbx.runtimeState
};
});
};
return runtime;
}
module.exports = init;