Seiten umbenannt entsprechend ESP32-Code

This commit is contained in:
Thomas Hooge 2025-09-15 08:40:51 +02:00
parent 766b191109
commit ebb7b42d48
4 changed files with 6 additions and 6 deletions

View File

@ -102,10 +102,10 @@ type = Barograph
type = Anchor type = Anchor
[page4] [page4]
type = Autobahn type = XTETrack
[page5] [page5]
type = ApparentWind type = Wind
[page6] [page6]
type = TwoValues type = TwoValues

View File

@ -22,8 +22,6 @@ from .fluid import Fluid
# Spezialseiten # Spezialseiten
from .ais import AIS from .ais import AIS
from .anchor import Anchor from .anchor import Anchor
from .apparentwind import ApparentWind
from .autobahn import Autobahn
from .autopilot import Autopilot from .autopilot import Autopilot
from .barograph import Barograph from .barograph import Barograph
from .battery import Battery from .battery import Battery
@ -40,4 +38,6 @@ from .solar import Solar
from .tracker import Tracker from .tracker import Tracker
from .rudder import Rudder from .rudder import Rudder
from .voltage import Voltage from .voltage import Voltage
from .wind import Wind
from .windrose import WindRose from .windrose import WindRose
from .xtetrack import XTETrack

View File

@ -3,7 +3,7 @@ import cairo
import math import math
from .page import Page from .page import Page
class ApparentWind(Page): class Wind(Page):
def __init__(self, pageno, cfg, appdata, boatdata): def __init__(self, pageno, cfg, appdata, boatdata):
super().__init__(pageno, cfg, appdata, boatdata) super().__init__(pageno, cfg, appdata, boatdata)

View File

@ -9,7 +9,7 @@ import cairo
import math import math
from .page import Page from .page import Page
class Autobahn(Page): class XTETrack(Page):
def __init__(self, pageno, cfg, appdata, boatdata): def __init__(self, pageno, cfg, appdata, boatdata):
super().__init__(pageno, cfg, appdata, boatdata) super().__init__(pageno, cfg, appdata, boatdata)