-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
DutchmanNL
committed
Aug 6, 2023
1 parent
32f91d2
commit 648d73e
Showing
5 changed files
with
674 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// VE.Direct Protocol Version 3.32 from 30 June 2021 | ||
// All available Monitor Types | ||
const MonitorTypes = { | ||
'-9': { | ||
'type':'Solar Charger' | ||
}, | ||
'-8': { | ||
'type':'Wind Turbine' | ||
}, | ||
'-7': { | ||
'type':'Shaft Generator' | ||
}, | ||
'-6': { | ||
'type':'Alternator' | ||
}, | ||
'-5': { | ||
'type':'Fuel cell' | ||
}, | ||
'-4': { | ||
'type':'Water generator' | ||
}, | ||
'-3': { | ||
'type':'DC/DC charger' | ||
}, | ||
'-2': { | ||
'type':'AC charger' | ||
}, | ||
'-1': { | ||
'type':'Generic source' | ||
}, | ||
'0': { | ||
'type':'Batery Monitor (BMV)' | ||
}, | ||
'1': { | ||
'type':'Generic load' | ||
}, | ||
'2': { | ||
'type':'Electric Drive' | ||
}, | ||
'3': { | ||
'type':'Fridge' | ||
}, | ||
'4': { | ||
'type':'Water pump' | ||
}, | ||
'5': { | ||
'type':'Bilge pump' | ||
}, | ||
'6': { | ||
'type':'DC System' | ||
}, | ||
'7': { | ||
'type':'Inverter' | ||
}, | ||
'8': { | ||
'type':'Water Heater' | ||
} | ||
}; | ||
module.exports = MonitorTypes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.