kopia lustrzana https://github.com/projecthorus/chasemapper
Add support for PAYLOAD_TELEMETRY message used by PITS LoRa gateway
rodzic
4fea3f36dd
commit
ce48b7b017
|
@ -95,6 +95,12 @@ class UDPListener(object):
|
||||||
if self.summary_callback is not None:
|
if self.summary_callback is not None:
|
||||||
self.summary_callback(packet_dict)
|
self.summary_callback(packet_dict)
|
||||||
|
|
||||||
|
if packet_dict["type"] == "PAYLOAD_TELEMETRY":
|
||||||
|
if "time_string" in packet_dict.keys():
|
||||||
|
packet_dict["time"] = packet_dict["time_string"]
|
||||||
|
if self.summary_callback is not None:
|
||||||
|
self.summary_callback(packet_dict)
|
||||||
|
|
||||||
if packet_dict["type"] == "GPS":
|
if packet_dict["type"] == "GPS":
|
||||||
if self.gps_callback is not None:
|
if self.gps_callback is not None:
|
||||||
self.gps_callback(packet_dict)
|
self.gps_callback(packet_dict)
|
||||||
|
|
Ładowanie…
Reference in New Issue