Skip to content

Instantly share code, notes, and snippets.

@bacall213
bacall213 / options.js
Last active December 21, 2015 05:39
Ninja Netmon BETA Dashboard Widget [2W x 1H] [Author: Brian Call] [License: MIT]
return {
"name": "Ninja Netmon",
"deviceMap": [
{ "deviceId": [530,531,532,533], "minimum": 1, "maximum": 1}, //Network In
{ "deviceId": [540,541,542,543], "minimum": 1, "maximum": 1}, //Network Out
{ "deviceId": 2000, "vendor": 0, "minimum": 1, "maximum": 1} //Sandbox
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 21, 2015 06:09
Ninja Temperature/Humidity BETA Dashboard Widget [2W x 1H] [Author: Brian Call] [License: MIT]
return {
"name": "Temperature/Humidity",
"deviceMap": [
{ "deviceId": 31, "vendor": 0, "minimum": 1, "maximum": 1 },
{ "deviceId": 30, "vendor": 0, "minimum": 1, "maximum": 1 }
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 21, 2015 10:59
Ninja NetMon Universal Single-wide BETA Dashboard Widget [Author: Brian Call] [License: MIT]
return {
"name": "Ninja NetMon (NIC | Rx | Kbps)",
"deviceMap": [
{ "deviceId": [530,531,532,533], "minimum": 1, "maximum": 1}, //Network In
{ "deviceId": [540,541,542,543], "minimum": 1, "maximum": 1}, //Network Out
{ "deviceId": 2000, "vendor": 0, "minimum": 1, "maximum": 1} //Sandbox
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 21, 2015 16:39
Ninja NetMon Tx Single-wide BETA Dashboard Widget
return {
"name": "Ninja NetMon (NIC | Tx | Kbps)",
"deviceMap": [
{ "deviceId": [540,541,542,543], "minimum": 1, "maximum": 1}, //Network Out
{ "deviceId": 2000, "vendor": 0, "minimum": 1, "maximum": 1} //Sandbox
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 21, 2015 17:39
Ninja RAM BETA Dashboard Widget
return {
"name": "Ninja RAM",
"deviceMap": [
{ "deviceId": [520,521,522,523], "minimum": 1, "maximum": 1}
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 21, 2015 17:39
Ninja CPU BETA Dashboard Widget
return {
"name": "Ninja CPU",
"deviceMap": [
{ "deviceId": [500,501,502,503], "minimum": 1, "maximum": 1}
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active June 27, 2024 13:50
[GENERIC] 2x Ninja Temperature/Humidity BETA Dashboard Widget. This widget is currently customized for the 433 MHz temperature/humidity sensors, but has been re-written with "sensor left" and "sensor right" descriptors, making it useful (and easily customizable) for any two sensors you want to graph on the same widget. The value display and grap…
return {
"name": "[GENERIC] Temperature/Humidity Widget",
"deviceMap": [
{ "deviceId": 31, "vendor": 0, "minimum": 1, "maximum": 1 },
{ "deviceId": 30, "vendor": 0, "minimum": 1, "maximum": 1 }
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 22, 2015 20:09
Ninjablock Health Widget (CPU/RAM/Disk) for the BETA dashboard
return {
"name": "Ninja Health",
"deviceMap": [
{ "deviceId": [500,501,502,503], "minimum": 1, "maximum": 1},
{ "deviceId": [520,521,522,523], "minimum": 1, "maximum": 1},
{ "deviceId": 2000, "minimum": 1, "maximum": 1}
],
"forceDeviceMapGroup": true
}
@bacall213
bacall213 / options.js
Last active December 23, 2015 02:19
Ninjablock Health Widget (CPU/RAM/Disk/Download/Upload) for the Ninjablocks BETA dashboard (Width x 1, Height x 2) <<>> Author: Brian Call <<>> License: MIT
return {
"name": "Ninja Health",
"deviceMap": [
{ "deviceId": [500,501,502,503], "minimum": 1, "maximum": 1}, //CPU
{ "deviceId": [520,521,522,523], "minimum": 1, "maximum": 1}, //RAM
{ "deviceId": [530,531,532,533], "minimum": 1, "maximum": 1}, //Network In
{ "deviceId": [540,541,542,543], "minimum": 1, "maximum": 1} //Network Out
{ "deviceId": 2000, "minimum": 1, "maximum": 3} //Sanbox
],
"forceDeviceMapGroup": true
@bacall213
bacall213 / options.js
Last active December 23, 2015 08:08
Ninjablocks Diskspace Dashboard Widget (Designed for use with https://github.com/bacall213/ninja-diskspace) (Author: Brian Call) (License: MIT)
return {
"name": "Ninja Diskspace",
"deviceMap": [
{ "deviceId": 2000, "minimum": 1, "maximum": 1} // Sandbox device until more specific ID is availble
],
"forceDeviceMapGroup": true
}