Hello,
I want to check both humid and temp received from Arduino at Esp8266.
Below is the code
How to check humid and temp all at once with different value. Or any other way to check the status whether data has been received at esp8266 side from Arduino
I want to check both humid and temp received from Arduino at Esp8266.
Below is the code
B4X:
Private Sub Arduino_Received_Data(humid () As Byte,temp As Byte)
If bc.IndexOf(humid,"80") > -1 Then <===== Here the value "80" will be different at times
Log("Received from Arduino : ",humid)
'timer1_Tick
End If
End Sub
How to check humid and temp all at once with different value. Or any other way to check the status whether data has been received at esp8266 side from Arduino