Skip to content

Commit

Permalink
Fix function call typo in RF code (#1421)
Browse files Browse the repository at this point in the history
  • Loading branch information
Niek authored and mcspr committed Dec 12, 2018
1 parent 7eef560 commit d2e0b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/espurna/rf.ino
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ void _rfWebSocketOnSend(JsonObject& root) {
char buffer[20];
root["rfbVisible"] = 1;
root["rfbCount"] = relayCount();
_rf_sendcodes.once_ms(1000, _rfWebSocketSendCodes);
_rfb_sendcodes.once_ms(1000, _rfWebSocketSendCodes);
}

void _rfWebSocketOnAction(uint32_t client_id, const char * action, JsonObject& data) {
Expand Down

0 comments on commit d2e0b12

Please sign in to comment.