Some small improvements

This commit is contained in:
Thomas Hooge 2025-07-11 10:42:31 +02:00
parent 906ee43929
commit 7603c30bed
5 changed files with 11 additions and 3 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
*~ *~
__pycache__

5
INSTALL Normal file
View File

@ -0,0 +1,5 @@
Everything is work in progress so you can manual install:
sudo mkdir /usr/local/lib/python3.11/dist-packages/nmea2000
sudo cp -a ./*.py /usr/local/lib/python3.11/dist-packages/nmea2000

View File

@ -1,3 +1,5 @@
__version__ = "0.0.1"
from .device import Device from .device import Device
from .boatdata import BoatData from .boatdata import BoatData
from .hbuffer import History, HistoryBuffer from .hbuffer import History, HistoryBuffer

View File

@ -1,5 +1,5 @@
''' '''
Routen und Wegepunkte Routes and waypoints
''' '''
class Waypoint(): class Waypoint():
def __init__(self, number, name): def __init__(self, number, name):

View File

@ -1,5 +1,5 @@
''' '''
Lange Beschreibung der Daten, mehrsprachig Long description of the data, multilingual
''' '''
desc = { desc = {
@ -148,7 +148,7 @@ desc = {
"de": "Kursfehler" "de": "Kursfehler"
}, },
# Sonderwerte # Special values
"xdrHum": { "xdrHum": {
"en": "Humidity", "en": "Humidity",
"de": "Luftfeuchte" "de": "Luftfeuchte"