conson-xp 1.0.1__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {conson_xp-1.0.1 → conson_xp-1.1.0}/PKG-INFO +1 -1
- {conson_xp-1.0.1 → conson_xp-1.1.0}/pyproject.toml +2 -2
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/__init__.py +1 -1
- conson_xp-1.1.0/src/xp/cli/commands/conbus/conbus_scan_commands.py +45 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_scan_service.py +1 -1
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/protocol/conbus_protocol.py +5 -4
- conson_xp-1.0.1/src/xp/cli/commands/conbus/conbus_scan_commands.py +0 -125
- {conson_xp-1.0.1 → conson_xp-1.1.0}/LICENSE +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/README.md +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/main.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/models/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/models/api.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/models/discover.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/conbus.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/conbus_blink.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/conbus_custom.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/conbus_datapoint.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/conbus_output.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/api/routers/errors.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/__main__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/api.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/api_start_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_actiontable_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_autoreport_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_blink_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_config_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_custom_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_datapoint_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_discover_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_lightlevel_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_linknumber_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_msactiontable_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_output_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_raw_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_receive_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/file_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/homekit/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/homekit/homekit.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/homekit/homekit_start_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/module_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/reverse_proxy_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/server/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/server/server_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_blink_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_checksum_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_discover_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_linknumber_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_parse_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_version_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/main.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/click_tree.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/datapoint_type_choice.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/decorators.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/error_handlers.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/formatters.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/serial_number_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/system_function_choice.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/utils/xp_module_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/connection/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/connection/exceptions.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/actiontable/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/actiontable/actiontable.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/actiontable/msactiontable_xp20.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/actiontable/msactiontable_xp24.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/actiontable/msactiontable_xp33.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_autoreport.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_blink.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_client_config.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_connection_status.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_custom.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_datapoint.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_discover.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_lightlevel.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_linknumber.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_output.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_raw.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/conbus/conbus_receive.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/homekit/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/homekit/homekit_accessory.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/homekit/homekit_config.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/homekit/homekit_conson_config.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/log_entry.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/protocol/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/protocol/conbus_protocol.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/response.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/action_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/datapoint_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/event_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/event_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/input_action_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/input_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/module_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/module_type_code.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/output_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/reply_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/system_function.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/system_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/telegram_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/telegram/timeparam_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/models/write_config_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/actiontable_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/actiontable_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/msactiontable_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/msactiontable_xp20_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/msactiontable_xp24_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/msactiontable_xp33_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_autoreport_get_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_autoreport_set_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_blink_all_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_blink_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_custom_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_datapoint_queryall_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_datapoint_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_discover_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_lightlevel_get_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_lightlevel_set_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_linknumber_get_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_linknumber_set_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_output_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_raw_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_receive_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_cache_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_conbus_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_config_validator.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_conson_validator.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_dimminglight.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_dimminglight_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_hap_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_lightbulb.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_lightbulb_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_module_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_outlet.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_outlet_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/homekit/homekit_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/log_file_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/module_type_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/protocol/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/protocol/protocol_factory.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/protocol/telegram_protocol.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/reverse_proxy_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/base_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/cp20_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/xp130_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/xp20_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/xp230_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/xp24_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/server/xp33_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_blink_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_checksum_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_discover_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_link_number_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_output_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/telegram/telegram_version_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/utils/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/utils/checksum.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/utils/dependencies.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/utils/event_helper.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/utils/serialization.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/utils/time_utils.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/.coverage +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/conftest.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/.coverage +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/telegram_test_data.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_actiontable_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_api/.coverage +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_api/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_blink_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_checksum_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_autoreport_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_blink_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_datapoint_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_lightlevel_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_linknumber_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_raw_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_conbus_receive_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_discovery_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_event_telegram_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_homekit_config_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_link_number_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_module_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_output_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_reverse_proxy_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_system_reply_telegram_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_version_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_xp20_action_table_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/integration/test_xp24_action_table_integration.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_api/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_click_tree.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_conbus_actiontable_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_conbus_blink_commands.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_datapoint_type_choice.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_decorators.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_error_handlers.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_formatters.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_serial_number_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_cli/test_system_function_choice.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_connection/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_connection/test_connection_init.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_connection/test_exceptions.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_encoding/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_encoding/test_latin1_edge_cases.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_conbus.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_conbus_client_send.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_conbus_discover.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_conbus_linknumber.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_event_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_log_entry.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_module_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_reply_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_system_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_system_telegram_enhancements.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_version_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_write_config_type.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_xp20_action_table.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_xp24_action_table.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_models/test_xp24_action_telegram.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_actiontable_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_base_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_blink_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_checksum_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_conbus_blink_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_conbus_lightlevel_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_conbus_linknumber_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_conbus_raw_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_conbus_reverse_proxy_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_discovery_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_homekit_cache_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_homekit_config_validator.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_homekit_conson_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_homekit_services.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_link_number_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_log_file_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_module_type_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_protocol.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_server_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_telegram_input_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_telegram_protocol.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_telegram_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_version_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_xp20_action_table_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_xp24_action_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_xp24_action_table_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_xp24_action_table_service.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_xp33_action_table_serializer.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_services/test_xp_server_services.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_utils/__init__.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_utils/test_checksum.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_utils/test_event_helper.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_utils/test_serialization.py +0 -0
- {conson_xp-1.0.1 → conson_xp-1.1.0}/tests/unit/test_utils/test_time_utils.py +0 -0
|
@@ -20,7 +20,7 @@ dependencies = [
|
|
|
20
20
|
]
|
|
21
21
|
requires-python = ">=3.11"
|
|
22
22
|
readme = "README.md"
|
|
23
|
-
version = "1.0
|
|
23
|
+
version = "1.1.0"
|
|
24
24
|
|
|
25
25
|
[project.license]
|
|
26
26
|
file = "LICENSE"
|
|
@@ -168,7 +168,7 @@ typecheck = "mypy src/ tests/"
|
|
|
168
168
|
vulture = "vulture src/ tests/"
|
|
169
169
|
refurb = "refurb src/ tests/"
|
|
170
170
|
isort = "isort src/ tests/"
|
|
171
|
-
bump-version = "pdm bump -v
|
|
171
|
+
bump-version = "pdm bump -v minor"
|
|
172
172
|
env = "echo ${PATH}"
|
|
173
173
|
install = "pdm install"
|
|
174
174
|
install-dev = "pdm install -G dev"
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"""Conbus client operations CLI commands."""
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
|
|
5
|
+
import click
|
|
6
|
+
from click import Context
|
|
7
|
+
|
|
8
|
+
from xp.cli.commands.conbus.conbus import conbus
|
|
9
|
+
from xp.cli.utils.decorators import connection_command
|
|
10
|
+
from xp.cli.utils.serial_number_type import SERIAL
|
|
11
|
+
from xp.models import ConbusResponse
|
|
12
|
+
from xp.services.conbus.conbus_scan_service import ConbusScanService
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@conbus.command("scan")
|
|
16
|
+
@click.argument("serial_number", type=SERIAL)
|
|
17
|
+
@click.argument("function_code", type=str)
|
|
18
|
+
@click.pass_context
|
|
19
|
+
@connection_command()
|
|
20
|
+
def scan_module(ctx: Context, serial_number: str, function_code: str) -> None:
|
|
21
|
+
"""
|
|
22
|
+
Scan all datapoints of a function_code for a module.
|
|
23
|
+
|
|
24
|
+
Examples:
|
|
25
|
+
|
|
26
|
+
\b
|
|
27
|
+
xp conbus scan 0012345011 02 # Scan all datapoints of function Read data points (02)
|
|
28
|
+
"""
|
|
29
|
+
service: ConbusScanService = (
|
|
30
|
+
ctx.obj.get("container").get_container().resolve(ConbusScanService)
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
def on_progress(progress: str) -> None:
|
|
34
|
+
click.echo(progress)
|
|
35
|
+
|
|
36
|
+
def on_finish(service_response: ConbusResponse) -> None:
|
|
37
|
+
click.echo(json.dumps(service_response.to_dict(), indent=2))
|
|
38
|
+
|
|
39
|
+
with service:
|
|
40
|
+
service.scan_module(
|
|
41
|
+
serial_number=serial_number,
|
|
42
|
+
function_code=function_code,
|
|
43
|
+
progress_callback=on_progress,
|
|
44
|
+
finish_callback=on_finish,
|
|
45
|
+
)
|
|
@@ -75,7 +75,7 @@ class ConbusProtocol(protocol.Protocol, protocol.ClientFactory):
|
|
|
75
75
|
)
|
|
76
76
|
|
|
77
77
|
self.logger.debug(
|
|
78
|
-
f"frameReceived payload: {payload.decode()}, checksum: {checksum}"
|
|
78
|
+
f"frameReceived payload: {payload.decode('latin-1')}, checksum: {checksum}"
|
|
79
79
|
)
|
|
80
80
|
|
|
81
81
|
# Reset timeout on activity
|
|
@@ -83,9 +83,9 @@ class ConbusProtocol(protocol.Protocol, protocol.ClientFactory):
|
|
|
83
83
|
|
|
84
84
|
telegram_received = TelegramReceivedEvent(
|
|
85
85
|
protocol=self,
|
|
86
|
-
frame=frame.decode(),
|
|
87
|
-
telegram=telegram.decode(),
|
|
88
|
-
payload=payload.decode(),
|
|
86
|
+
frame=frame.decode("latin-1"),
|
|
87
|
+
telegram=telegram.decode("latin-1"),
|
|
88
|
+
payload=payload.decode("latin-1"),
|
|
89
89
|
telegram_type=telegram_type,
|
|
90
90
|
serial_number=serial_number,
|
|
91
91
|
checksum=checksum,
|
|
@@ -112,6 +112,7 @@ class ConbusProtocol(protocol.Protocol, protocol.ClientFactory):
|
|
|
112
112
|
self.logger.debug(f"Sending frame: {frame.decode()}")
|
|
113
113
|
self.transport.write(frame) # type: ignore
|
|
114
114
|
self.telegram_sent(frame.decode())
|
|
115
|
+
self._reset_timeout()
|
|
115
116
|
|
|
116
117
|
def send_telegram(
|
|
117
118
|
self,
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
"""Conbus client operations CLI commands."""
|
|
2
|
-
|
|
3
|
-
import json
|
|
4
|
-
import threading
|
|
5
|
-
|
|
6
|
-
import click
|
|
7
|
-
from click import Context
|
|
8
|
-
|
|
9
|
-
from xp.cli.commands.conbus.conbus import conbus
|
|
10
|
-
from xp.cli.utils.decorators import connection_command
|
|
11
|
-
from xp.cli.utils.serial_number_type import SERIAL
|
|
12
|
-
from xp.models import ConbusResponse
|
|
13
|
-
from xp.services.conbus.conbus_scan_service import ConbusScanService
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
@conbus.command("scan")
|
|
17
|
-
@click.argument("serial_number", type=SERIAL)
|
|
18
|
-
@click.argument("function_code", type=str)
|
|
19
|
-
@click.option(
|
|
20
|
-
"--background",
|
|
21
|
-
"-b",
|
|
22
|
-
default=True,
|
|
23
|
-
is_flag=True,
|
|
24
|
-
help="Run scan in background with live output",
|
|
25
|
-
)
|
|
26
|
-
@click.pass_context
|
|
27
|
-
@connection_command()
|
|
28
|
-
def scan_module(
|
|
29
|
-
ctx: Context, serial_number: str, function_code: str, background: bool
|
|
30
|
-
) -> None:
|
|
31
|
-
"""
|
|
32
|
-
Scan all datapoints of a function_code for a module.
|
|
33
|
-
|
|
34
|
-
Examples:
|
|
35
|
-
|
|
36
|
-
\b
|
|
37
|
-
xp conbus scan 0012345011 02 # Scan all datapoints of function Read data points (02)
|
|
38
|
-
"""
|
|
39
|
-
service = ctx.obj.get("container").get_container().resolve(ConbusScanService)
|
|
40
|
-
|
|
41
|
-
# Shared state for results collection and live output
|
|
42
|
-
results = []
|
|
43
|
-
successful_count = 0
|
|
44
|
-
failed_count = 0
|
|
45
|
-
|
|
46
|
-
def progress_callback(response: ConbusResponse, total: int, count: int) -> None:
|
|
47
|
-
nonlocal successful_count, failed_count
|
|
48
|
-
results.append(response)
|
|
49
|
-
|
|
50
|
-
if count % 10 == 0:
|
|
51
|
-
click.echo(f"{count}/{total} datapoints scanned.")
|
|
52
|
-
|
|
53
|
-
# Count results for JSON output
|
|
54
|
-
if response.success:
|
|
55
|
-
successful_count += 1
|
|
56
|
-
else:
|
|
57
|
-
failed_count += 1
|
|
58
|
-
|
|
59
|
-
try:
|
|
60
|
-
with service:
|
|
61
|
-
if background:
|
|
62
|
-
# Background processing
|
|
63
|
-
|
|
64
|
-
# Use background scanning with progress callback
|
|
65
|
-
scan_complete = threading.Event()
|
|
66
|
-
|
|
67
|
-
def background_scan() -> None:
|
|
68
|
-
try:
|
|
69
|
-
service.scan_module(
|
|
70
|
-
serial_number, function_code, progress_callback
|
|
71
|
-
)
|
|
72
|
-
except (ValueError, KeyError, ConnectionError):
|
|
73
|
-
pass # Will be handled by outer error handling
|
|
74
|
-
finally:
|
|
75
|
-
scan_complete.set()
|
|
76
|
-
|
|
77
|
-
# Start background thread
|
|
78
|
-
scan_thread = threading.Thread(target=background_scan, daemon=True)
|
|
79
|
-
scan_thread.start()
|
|
80
|
-
|
|
81
|
-
# Wait for completion or user interrupt
|
|
82
|
-
try:
|
|
83
|
-
while not scan_complete.is_set():
|
|
84
|
-
scan_complete.wait(1.0) # Check every second
|
|
85
|
-
except KeyboardInterrupt:
|
|
86
|
-
# Output partial results in JSON format
|
|
87
|
-
output = {
|
|
88
|
-
"serial_number": serial_number,
|
|
89
|
-
"total_scans": len(results),
|
|
90
|
-
"successful_scans": successful_count,
|
|
91
|
-
"failed_scans": failed_count,
|
|
92
|
-
"background_mode": background,
|
|
93
|
-
"interrupted": True,
|
|
94
|
-
"results": [result.to_dict() for result in results],
|
|
95
|
-
}
|
|
96
|
-
click.echo(json.dumps(output, indent=2))
|
|
97
|
-
raise click.Abort()
|
|
98
|
-
|
|
99
|
-
# Wait for thread to complete
|
|
100
|
-
scan_thread.join(timeout=1.0)
|
|
101
|
-
|
|
102
|
-
else:
|
|
103
|
-
# Traditional synchronous scanning
|
|
104
|
-
results = service.scan_module(
|
|
105
|
-
serial_number,
|
|
106
|
-
function_code,
|
|
107
|
-
progress_callback,
|
|
108
|
-
)
|
|
109
|
-
successful_count = len([r for r in results if r.success])
|
|
110
|
-
failed_count = len([r for r in results if not r.success])
|
|
111
|
-
|
|
112
|
-
# Final output
|
|
113
|
-
output = {
|
|
114
|
-
"serial_number": serial_number,
|
|
115
|
-
"total_scans": len(results),
|
|
116
|
-
"successful_scans": successful_count,
|
|
117
|
-
"failed_scans": failed_count,
|
|
118
|
-
"background_mode": background,
|
|
119
|
-
"results": [result.to_dict() for result in results],
|
|
120
|
-
}
|
|
121
|
-
click.echo(json.dumps(output, indent=2))
|
|
122
|
-
|
|
123
|
-
except click.Abort:
|
|
124
|
-
# User interrupted the scan
|
|
125
|
-
raise
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_actiontable_commands.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_autoreport_commands.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_lightlevel_commands.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_linknumber_commands.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/conbus/conbus_msactiontable_commands.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_checksum_commands.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_discover_commands.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_linknumber_commands.py
RENAMED
|
File without changes
|
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/cli/commands/telegram/telegram_version_commands.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/actiontable_serializer.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/actiontable_service.py
RENAMED
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/actiontable/msactiontable_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conson_xp-1.0.1 → conson_xp-1.1.0}/src/xp/services/conbus/conbus_datapoint_queryall_service.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|