Hi, the HAB2 tracker does for some time no longer appear to send a valid LoRa string compared to the LoRa-Gateway software. It sends 2 $ symbols "to much" and the habitat does not recognize the string. I solved this for myself by changing 2 lines: in https://github.com/LoRaTracker/HAB2/blob/master/Programs/LoRaTracker_HAB2_101017/LoRaTracker_HAB2_101017.ino
line 325 "$$$$%s,%lu,%02d:%02d:%02d,%s,%s,%d,%d,%d,%d,%d,%d,%d,%d,%d,%lu", removed 2 $ symbols at the start of the line (from 4 to 2)
line 349 for (index = 4; index < Count; index++) //element 4 is first character after $$ at start I changed the index = 4 to index = 2
Now the payloads appear on the map again.
Hi, the HAB2 tracker does for some time no longer appear to send a valid LoRa string compared to the LoRa-Gateway software. It sends 2 $ symbols "to much" and the habitat does not recognize the string. I solved this for myself by changing 2 lines: in https://github.com/LoRaTracker/HAB2/blob/master/Programs/LoRaTracker_HAB2_101017/LoRaTracker_HAB2_101017.ino
line 325 "$$$$%s,%lu,%02d:%02d:%02d,%s,%s,%d,%d,%d,%d,%d,%d,%d,%d,%d,%lu", removed 2 $ symbols at the start of the line (from 4 to 2)
line 349 for (index = 4; index < Count; index++) //element 4 is first character after $$ at start I changed the index = 4 to index = 2
Now the payloads appear on the map again.