Skip to content

Commit

Permalink
v1.2.20 Fix RPI Tempature. (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
kd9lsv authored Jan 19, 2023
1 parent b4640e4 commit 16fcccf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 deletions flow.json
Original file line number Diff line number Diff line change
Expand Up @@ -23703,15 +23703,14 @@
"id": "dffc242.cc36fd8",
"type": "exec",
"z": "db5600520bb7f279",
"d": true,
"command": "vcgencmd measure_temp",
"addpay": false,
"append": "",
"useSpawn": "",
"timer": "",
"winHide": false,
"name": "RPi Temp.",
"x": 490,
"x": 510,
"y": 320,
"wires": [
[
Expand Down Expand Up @@ -23746,11 +23745,11 @@
"y": 320.4722194671631,
"wires": [
[
"dffc242.cc36fd8",
"9bdcdf74.974df",
"4f06a834.7ba218",
"cae8b4ca.06b218",
"ff3e660.2675e98"
"ff3e660.2675e98",
"dffc242.cc36fd8"
]
]
},
Expand All @@ -23759,7 +23758,7 @@
"type": "function",
"z": "db5600520bb7f279",
"name": "Set temp to String",
"func": "str = msg.payload\nmsg.payload = str.substring(5,9);\nreturn msg;",
"func": "let str = msg.payload\nmsg.payload = str.substring(5,9);\nif (msg.payload!=\"\"){\n return msg;\n}\n\n",
"outputs": 1,
"noerr": 0,
"initialize": "",
Expand Down Expand Up @@ -24149,8 +24148,8 @@
],
"seg1": "125",
"seg2": "150",
"x": 1094.7778091430664,
"y": 173.66666316986084,
"x": 1170,
"y": 280,
"wires": []
},
{
Expand Down Expand Up @@ -24268,8 +24267,8 @@
],
"outputs": 1,
"useDifferentColor": false,
"x": 1114.7778091430664,
"y": 233.66666316986084,
"x": 1190,
"y": 320,
"wires": [
[]
]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "n1mm_dashboard",
"description": "Dashboard for N1MM Contesting",
"version": "1.2.19",
"version": "1.2.20",
"dependencies": {
"node-red-contrib-hourglass": "1.5.0",
"node-red-contrib-msg-speed": "2.1.0",
Expand All @@ -25,4 +25,4 @@
"credentialsFile": "flow_cred.json"
}
}
}
}

0 comments on commit 16fcccf

Please sign in to comment.