@@ -701,29 +701,29 @@ void MHZ19::printstream(byte inBytes[9], bool isSent, byte pserrorCode)
701
701
if (pserrorCode != RESULT_OK && isSent == false )
702
702
{
703
703
if (this ->storage .settings ._isDec )
704
- ESP_LOGE (TAG_MHZ19, " Recieved >> %d %d %d %d %d %d %d %d %d ERROR Code: %d" ,
704
+ ESP_LOGE (TAG_MHZ19, " Received >> %d %d %d %d %d %d %d %d %d ERROR Code: %d" ,
705
705
inBytes[0 ], inBytes[1 ], inBytes[2 ], inBytes[3 ], inBytes[4 ], inBytes[5 ], inBytes[6 ], inBytes[7 ], inBytes[8 ],
706
706
pserrorCode);
707
707
else
708
- ESP_LOGE (TAG_MHZ19, " Recieved >> %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x ERROR Code: %d" ,
708
+ ESP_LOGE (TAG_MHZ19, " Received >> %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x ERROR Code: %d" ,
709
709
inBytes[0 ], inBytes[1 ], inBytes[2 ], inBytes[3 ], inBytes[4 ], inBytes[5 ], inBytes[6 ], inBytes[7 ], inBytes[8 ],
710
710
pserrorCode);
711
711
}
712
712
else
713
713
{
714
714
if (this ->storage .settings ._isDec )
715
- ESP_LOGD (TAG_MHZ19, " %s %d %d %d %d %d %d %d %d %d PASS" , isSent ? " Sent << " : " Recieved >> " ,
715
+ ESP_LOGD (TAG_MHZ19, " %s %d %d %d %d %d %d %d %d %d PASS" , isSent ? " Sent << " : " Received >> " ,
716
716
inBytes[0 ], inBytes[1 ], inBytes[2 ], inBytes[3 ], inBytes[4 ], inBytes[5 ], inBytes[6 ], inBytes[7 ], inBytes[8 ]);
717
717
else
718
718
719
- ESP_LOGD (TAG_MHZ19, " %s %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x PASS" , isSent ? " Sent << " : " Recieved >> " ,
719
+ ESP_LOGD (TAG_MHZ19, " %s %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x %#03x PASS" , isSent ? " Sent << " : " Received >> " ,
720
720
inBytes[0 ], inBytes[1 ], inBytes[2 ], inBytes[3 ], inBytes[4 ], inBytes[5 ], inBytes[6 ], inBytes[7 ], inBytes[8 ]);
721
721
}
722
722
723
723
#elif MHZ19_ERRORS
724
724
if (pserrorCode != RESULT_OK && isSent == false )
725
725
{
726
- Serial.print (" Recieved >> " );
726
+ Serial.print (" Received >> " );
727
727
728
728
if (this ->storage .settings ._isDec )
729
729
{
@@ -753,7 +753,7 @@ void MHZ19::printstream(byte inBytes[9], bool isSent, byte pserrorCode)
753
753
754
754
else
755
755
{
756
- isSent ? Serial.print (" Sent << " ) : Serial.print (" Recieved >> " );
756
+ isSent ? Serial.print (" Sent << " ) : Serial.print (" Received >> " );
757
757
758
758
if (this ->storage .settings ._isDec )
759
759
{
0 commit comments