Skip to main content

Custom library for electricity meters Neva MT 3xx

Project description

Library for electricity meters Neva MT 3xx

Working via serial port or RFC2217 server using protocol IEC 61107 (currently IEC 62056-21) and OBIS codes.

Installation

python -m pip install pyneva

Usage examples

From CLI

$ python -m pyneva -p 192.168.88.109:1884 --func total_energy active_power --obis 60.01.00*FF
Connected to: NEVAMT324.1106

OBIS:
60.01.00*FF      60089784

Functions:
total_energy     TotalEnergy(total=16393.23, T1=12827.84, T2=3565.39, T3=0.0, T4=0.0)
active_power     ActivePower(sum=2017.8, phaseA=1681.9, phaseB=201.4, phaseC=134.4)

From code

from pyneva import Meter

# Pass serial device or ip:port of the RFC2217 server 
# configured in telnet mode with remctl option
with Meter("COM4") as session:
    print(session.device_name)
    # NEVAMT324.1106
    
    print(session.serial_number)
    # 11111111
    
    print(session.total_energy)
    # TotalEnergy(total=16348.84, T1=12790.08, T2=3558.76, T3=0.0, T4=0.0)
    
    print(session.voltage)
    # Voltage(phaseA=233.81, phaseB=233.02, phaseC=232.15)
    
    print(session.active_power)
    # ActivePower(sum=1968.8, phaseA=5.0, phaseB=1833.4, phaseC=130.3)
    
    print(session.seasonal_schedules)
    # (SeasonSchedule(month=1, day=1, weekday_skd_num=1, sat_skd_num=1, sun_skd_num=1),)
    # Returns tuple with seasonal schedules (SeasonSchedule objects).
    # Each schedule specifies from which date the tariff starts,
    # and the numbers of tariff schedules on weekdays, Saturdays, Sundays separately.
    
    print(session.special_days_schedules)
    # ()
    # Returns empty tuple if you have no special days tariff schedules (max 32 days)
    
    print(session.tariff_schedules)
    # (TariffSchedule(parts=(TariffSchedulePart(hour=7, minute=0, T_num=1), TariffSchedulePart(hour=23, minute=0, T_num=2))),)
    # Returns tuple with tariff schedules (TariffSchedule objects).
    # Each tariff schedule contains parts of the schedule (TariffSchedulePart objects).
    # Each schedule part describes from what time of day the tariff starts and tariff number (T1, T2, T3, T4).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyneva-0.7.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

pyneva-0.7-py3-none-any.whl (8.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page