.bumpversion.cfg
CHANGELOG.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
mkdocs.yml
pyproject.toml
docs/TESTING_STRATEGY.md
docs/index.md
docs/api/client.md
docs/api/constants.md
docs/api/models.md
docs/api/services.md
docs/getting_started/installation.md
docs/getting_started/quick_start.md
docs/guides/backup_restore.md
docs/guides/cli_guide.md
docs/guides/control_modes.md
docs/guides/device-profiles.md
docs/guides/historical_data.md
docs/guides/time_management.md
docs/guides/understanding_telemetry.md
docs/integrations/esphome.md
docs/protocol/architecture.md
docs/protocol/autoadapt_modes.md
docs/protocol/ble_architecture.md
docs/protocol/connection.md
docs/protocol/control.md
docs/protocol/control_modes.md
docs/protocol/device_info.md
docs/protocol/energy_power.md
docs/protocol/schedules.md
docs/protocol/telemetry.md
docs/protocol/wire_format.md
docs/protocol/packet_traces/01_connection.md
docs/protocol/packet_traces/02_authentication.md
docs/protocol/packet_traces/03_telemetry_stream.md
docs/protocol/packet_traces/04_set_mode.md
docs/protocol/packet_traces/05_schedule_write.md
docs/protocol/packet_traces/06_alarms_warnings.md
docs/reference/data_models.md
docs/reference/hardware.md
docs/reimplementation/README.md
docs/reimplementation/architecture.md
docs/reimplementation/checklist.md
docs/reimplementation/common_pitfalls.md
docs/reimplementation/layer_by_layer.md
docs/reimplementation/test_vectors.md
docs/troubleshooting/service_discovery.md
src/alpha_hwr/__init__.py
src/alpha_hwr/client.py
src/alpha_hwr/command_processor.py
src/alpha_hwr/config.py
src/alpha_hwr/constants.py
src/alpha_hwr/event_log.py
src/alpha_hwr/exceptions.py
src/alpha_hwr/models.py
src/alpha_hwr/profile_parser.py
src/alpha_hwr/utils.py
src/alpha_hwr.egg-info/PKG-INFO
src/alpha_hwr.egg-info/SOURCES.txt
src/alpha_hwr.egg-info/dependency_links.txt
src/alpha_hwr.egg-info/entry_points.txt
src/alpha_hwr.egg-info/requires.txt
src/alpha_hwr.egg-info/top_level.txt
src/alpha_hwr/cli/__init__.py
src/alpha_hwr/cli/app.py
src/alpha_hwr/cli/common.py
src/alpha_hwr/cli/config_manager.py
src/alpha_hwr/cli/commands/__init__.py
src/alpha_hwr/cli/commands/clock.py
src/alpha_hwr/cli/commands/config.py
src/alpha_hwr/cli/commands/control.py
src/alpha_hwr/cli/commands/device.py
src/alpha_hwr/cli/commands/events.py
src/alpha_hwr/cli/commands/history.py
src/alpha_hwr/cli/commands/monitor.py
src/alpha_hwr/cli/commands/schedule.py
src/alpha_hwr/cli/output/__init__.py
src/alpha_hwr/cli/output/formatters.py
src/alpha_hwr/cli/output/themes.py
src/alpha_hwr/core/__init__.py
src/alpha_hwr/core/authentication.py
src/alpha_hwr/core/session.py
src/alpha_hwr/core/transport.py
src/alpha_hwr/protocol/__init__.py
src/alpha_hwr/protocol/codec.py
src/alpha_hwr/protocol/frame_builder.py
src/alpha_hwr/protocol/frame_parser.py
src/alpha_hwr/protocol/telemetry_decoder.py
src/alpha_hwr/services/__init__.py
src/alpha_hwr/services/base.py
src/alpha_hwr/services/configuration.py
src/alpha_hwr/services/control.py
src/alpha_hwr/services/device_info.py
src/alpha_hwr/services/event_log.py
src/alpha_hwr/services/history.py
src/alpha_hwr/services/schedule.py
src/alpha_hwr/services/telemetry.py
src/alpha_hwr/services/time.py
tests/conftest.py
tests/test_active_control.py
tests/test_advanced_telemetry.py
tests/test_autoadapt_modes.py
tests/test_backup_restore.py
tests/test_basic.py
tests/test_client_telemetry.py
tests/test_clock.py
tests/test_command_processor.py
tests/test_config.py
tests/test_configuration_service.py
tests/test_control_mode_retrieval.py
tests/test_control_parsing.py
tests/test_control_service_extended.py
tests/test_day_normalization.py
tests/test_device_info.py
tests/test_full_backup_restore_cycle.py
tests/test_history_parsing.py
tests/test_history_service.py
tests/test_mock_pump.py
tests/test_mode_25.py
tests/test_models.py
tests/test_packet_creation.py
tests/test_packet_structure.py
tests/test_profile_parser.py
tests/test_protocol_expanded.py
tests/test_schedule_coverage.py
tests/test_schedule_entry.py
tests/test_schedule_protocol.py
tests/test_schedule_service.py
tests/test_schedule_write.py
tests/test_telemetry_integration.py
tests/test_telemetry_service.py
tests/test_temperature_control.py
tests/test_utils.py
tests/test_version_consistency.py
tests/test_wire_protocol.py
tests/benchmarks/test_performance.py
tests/integration/test_client_workflows.py
tests/mocks/__init__.py
tests/mocks/mock_pump.py
tests/mocks/mock_transport.py
tests/reference/test_protocol_vectors.py
tests/unit/core/test_base_service.py
tests/unit/core/test_control_service.py
tests/unit/core/test_device_info_service.py
tests/unit/core/test_event_log_service.py
tests/unit/core/test_time_service.py
tests/unit/protocol/test_codec.py
tests/unit/protocol/test_frame_builder.py
tests/unit/protocol/test_frame_parser.py
tests/unit/protocol/test_frame_properties.py
tests/unit/protocol/test_telemetry_decoder.py