Added DBS to boatdata

This commit is contained in:
Thomas Hooge 2025-07-11 13:42:49 +02:00
parent 7603c30bed
commit be50c5e70a
1 changed files with 2 additions and 0 deletions

View File

@ -396,6 +396,7 @@ class BoatData():
self.xte = BoatValueDistance("XTE", "m")
self.stw = BoatValueSpeed("STW", "kn")
self.dbt = BoatValueDepth("DBT", "m")
self.dbs = BoatValueDepth("DBS", "m")
self.roll = BoatValueAngle("ROLL", "deg")
self.pitch = BoatValueAngle("PTCH", "deg")
self.yaw = BoatValueAngle("YAW", "deg")
@ -452,6 +453,7 @@ class BoatData():
'BTW': self.bearing,
'COG': self.cog,
'DBT': self.dbt,
'DBS': self.dbs,
'DTW': self.wpdist,
'GPSD': self.gpsd,
'GPST': self.gpst,