Skip to content

Commit

Permalink
Fix issue whereby device type cannot be populated anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
theGOTOguy committed Jan 7, 2024
1 parent f52cede commit caf1fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devices/uartnmeagps.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def publish(self):
result = False
try:
if not self.has_transmitted_device_info:
result = self._try_write_to_remote('GPS', 'Model', self.device)
result = self._try_write_to_remote('GPS', 'Model', 'Generic UART NMEA GPS')
self.has_transmitted_device_info = True

if self.latitude and self.longitude and abs(gps_latitude) <= 90 and abs(gps_longitude) <= 180:
Expand Down

0 comments on commit caf1fcd

Please sign in to comment.