Skip to content

dr-waterstorm/MennekesAmtronWallbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Mennekes Amtron Wallbox

With this Python module you can read and write modbus registers from MENNEKES AMTRON Xtra/Premium wallboxes. Tested on my MENNEKES AMTRON Xtra wallbox.

Should work for AMTRON Premium devices as well.

Implements registers from the MENNEKES ATROM MODBUS-TCP description.

Setup

Clone git and call:

pip install .

Usage

from amtronwallbox.amtronwallbox import MennekesAmtronWallbox

#ip and port for modbus host
amtron = MennekesAmtronWallbox('IP',502)

#update and show all values provided by register map for modbus server
amtron.print_all_data()
> {
    'internal_temp': 12,
    'external_temp': 13,
    'cp_state': 1,
    'pp_state': 4,
    'hcc3_error_code': 0,
    'state': 0,
    'operation_mode': 1,
    'connector_type': 2,
    'no_of_phases': 3,
    'rated_current': 32,
    'installation_current': 16,
    'serial_number': 0000000000,
    'charging_session_meter_count': 11779,
    'actual_power_consumption': 0,
    'wallbox_name': 'AMTRON',
    'max_current_t1': 16,
    'start_hour_t1': 4,
    'start_minute_t1': 30
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages