Skip to content

Commit

Permalink
add hexadecimal publication to IRtoMQTT with ESP8266
Browse files Browse the repository at this point in the history
  • Loading branch information
1technophile committed Apr 27, 2019
1 parent 8b0e3eb commit 8aad413
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ZgatewayIR.ino
Expand Up @@ -106,7 +106,10 @@ void IRtoMQTT(){
IRdata.set("value", (unsigned long)(results.value));
IRdata.set("protocol", (int)(results.decode_type));
IRdata.set("bits",(int)(results.bits));

#ifdef ESP8266 //resultToHexidecimal is only available with IRremoteESP8266
String hex = resultToHexidecimal(&results);
IRdata.set("hex", (char *)hex.c_str());
#endif
String rawCode = "";
// Dump data
for (uint16_t i = 1; i < results.rawlen; i++) {
Expand Down

0 comments on commit 8aad413

Please sign in to comment.