This website works better with JavaScript.
Home
Explore
Help
Sign In
mh
/
mhsw-espurna
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Add RSSI to InfluxDB heartbeat (
#1400
)
alexa
BuildTheRobots
6 years ago
committed by
Max Prokhorov
parent
606ef345bf
commit
1d50e3cc2f
1 changed files
with
3 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
code/espurna/utils.ino
+ 3
- 0
code/espurna/utils.ino
View File
@ -236,6 +236,9 @@ void heartbeat() {
#
if (HEARTBEAT_REPORT_FREEHEAP)
idbSend
(
MQTT_TOPIC_FREEHEAP
,
String
(
free_heap
)
.
c_str
(
)
)
;
#
endif
#
if (HEARTBEAT_REPORT_RSSI)
idbSend
(
MQTT_TOPIC_RSSI
,
String
(
WiFi
.
RSSI
(
)
)
.
c_str
(
)
)
;
#
endif
#
endif
}
Write
Preview
Loading…
Cancel
Save