Cesar_Morisco
Active Member
Hey, guys
All very well.
Unable to send data to sensor boundary using Mqtt
could someone tell me how to do this or an example
I thank
All very well.
Unable to send data to sensor boundary using Mqtt
could someone tell me how to do this or an example
I thank
NumberDialog:
Private Sub Button9_Click
numdial.Number=1
numdial.Digits=2
numdial.Number=25
numdial.ShowSign=False
If numdial.Show("Limit de Temperature (°C) Max:","OK","Cancel","",Null)=DialogResponse.POSITIVE Then
If numdial.Number > = 18 And numdial.Number < = 40 Then
Dim Temp_Set As String
Temp_Set = numdial.Number
MQTT.Publish("Temp_Set" & Temp_Set,BC.StringToBytes(True,"UTF8"))' didn't give
MQTT.Publish("Temp_Set" + Temp_Set,BC.StringToBytes(True,"UTF8"))' didn't give
'HELP ME
Else
xui.MsgboxAsync("You Can Program Sensor Limit Just Between -18°C + 40°C!","Error")
End If
End If
End Sub
B4R:
If NumberFormat(celsius,0,0) = Temp_Set Then
PinGPIO14.DigitalWrite(True)
Else
PinGPIO14.DigitalWrite(False)
End If