Small update
This commit is contained in:
parent
c7ed4acb03
commit
188cac5287
@ -21,7 +21,7 @@ def create_dsmr_protocol(dsmr_version, telegram_callback, loop=None, **kwargs):
|
|||||||
return protocol
|
return protocol
|
||||||
|
|
||||||
|
|
||||||
def _create_dsmr_protocol(dsmr_version, telegram_callback, protocol loop=None, **kwargs):
|
def _create_dsmr_protocol(dsmr_version, telegram_callback, protocol, loop=None, **kwargs):
|
||||||
"""Creates a DSMR asyncio protocol."""
|
"""Creates a DSMR asyncio protocol."""
|
||||||
|
|
||||||
if dsmr_version == '2.2':
|
if dsmr_version == '2.2':
|
||||||
|
@ -1,15 +1,13 @@
|
|||||||
"""Asyncio protocol implementation for handling telegrams over a RFXtrx connection ."""
|
"""Asyncio protocol implementation for handling telegrams over a RFXtrx connection ."""
|
||||||
|
|
||||||
from functools import partial
|
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
from serial_asyncio import create_serial_connection
|
from serial_asyncio import create_serial_connection
|
||||||
|
|
||||||
from .protocol import DSMRProtocol, _create_dsmr_protocol
|
from .protocol import DSMRProtocol, _create_dsmr_protocol
|
||||||
|
|
||||||
|
|
||||||
def create_rfxtrx_dsmr_protocol(dsmr_version, telegram_callback, loop=None, **kwargs):
|
def create_rfxtrx_dsmr_protocol(dsmr_version, telegram_callback, loop=None, **kwargs):
|
||||||
"""Creates a DSMR asyncio protocol."""
|
"""Creates a RFXtrxDSMR asyncio protocol."""
|
||||||
protocol = _create_dsmr_protocol(dsmr_version, telegram_callback,
|
protocol = _create_dsmr_protocol(dsmr_version, telegram_callback,
|
||||||
RFXtrxDSMRProtocol, loop, **kwargs)
|
RFXtrxDSMRProtocol, loop, **kwargs)
|
||||||
return protocol
|
return protocol
|
||||||
|
Loading…
Reference in New Issue
Block a user