Prøver å få en Prowl push-melding fra HS3, men sliter litt med syntax.
Skulle gjerne hatt inn en newline, slik at meldingen kommer på to linjer istedenfor på en.
Har prøvd med diverse versjoner av \n og %0A uten hell.
Noen som har noen tips?
sub Main (byVal msg_short As String)
Dim url
Dim url_response
Dim msg
Dim msg2
Dim temp as Double = hs.DeviceValueEx(26)
Dim lowtemp as Double = hs.DeviceValueEx(649)
msg = "Utetemperatur: " &temp
msg2= "%0A Laveste sist natt: " &lowtemp
url = "apikey=<myAPIkey>&application=Huset vårt&event=" & msg & msg2
url_response = hs.URLAction("https://api.prowlapp.com/publicapi/add", "POST", url, "Content-Type: application/x-www-form-urlencoded")
End Sub