@Erel,
yes.... I got your point. But One details I am not able to understand.
1. I want to send humid, and temp from dht11 sensor from Arduino to esp8266
2. Esp will receive the data from Arduino and send to Cloud server.
Here I received the data from Arduino and it is like below at Esp8266 side...
Humid from Ardiono :33.3977.99 <----here both Temp & Humid are coming
Temp from Arduino :33.3977.99 <----here both Temp & Humid are coming
At Arduino the below is code to send to Esp
Private Sub Timer1_Tick
'Dim FixedValue As String=80
Dim humid(),temp() As Byte
humid="33.39"
temp="77.99"
'Astrem.Write(ser.ConvertBytesToArray(humid,data))
Astrem.Write(humid)
Astrem.Write(temp)
Log("Send to Esp8266 Successfully!!")
End Sub
At ESP receiving Side
Private Sub Arduino_Received_Data(buffer() As Byte)
Log("Humid from Ardiono :",buffer)
Log("Temp from Arduino :",buffer)
End Sub
I want to separate the values and send to cloud server