substitutions:   name: energy-meter   friendly_name: Energy Meter   static_ip: 192.168.0.6   gateway: 192.168.0.1   subnet: 255.255.254.0   api_key: !secret energy_monitor_api_encryption_key   ota_pass: !secret energy_monitor_ota_password esphome:   name: ${name}   friendly_name: ${friendly_name}   on_boot:     priority: -100.0  # Runs after WiFi, MQTT, and API connections are ready     then:       - delay: 15s     # Wait 15 seconds for energy ICs to stabilize       - logger.log: "Boot delay finished. Allowing sensor publishing." esp32:   board: esp32-s3-devkitc-1   framework:     type: arduino # Enable logging logger:   level: VERBOSE   logs:     modbus: VERBOSE     modbus_controller: VERBOSE     # Turn down everything else so your log screen doesn't fly by too fast:     sensor: DEBUG     component: DEBUG     i2c.idf: NONE # Enable Home Assistant API api:   encryption:     key: ${api_key} # allow for remote updates ota:   - platform: esphome     password: ${ota_pass} ethernet:   type: W5500   clk_pin: GPIO42   mosi_pin: GPIO43   miso_pin: GPIO44   cs_pin: GPIO41   interrupt_pin: GPIO2   reset_pin: GPIO1 uart:   rx_pin: 9   tx_pin: 10   baud_rate: 115200   stop_bits: 1   data_bits: 8   parity: NONE web_server:   port: 80   ota: False   version: 3   local: True text_sensor:   - platform: ethernet_info     ip_address:       name: ESP IP Address       id: eth_ip font:   - file: "gfonts://Roboto"     id: roboto     size: 15 i2c:   sda: 18   scl: 17 display:   - platform: ssd1306_i2c     model: "SSD1306 128x64"     address: 0x3C     lambda: |-       it.printf(0, 15, id(roboto), "IP: %s", id(eth_ip).state.c_str()); modbus: modbus_controller:   - id: modbod     address: 1     update_interval: 60s sensor:   # ct 1, bank 1, pin 1, addr_offset 100   - platform: modbus_controller     id: _ct_01_energy     name: _ct_01_energy     address: 140     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 2, bank 1, pin 2, addr_offset 102   - platform: modbus_controller     id: _ct_02_energy     name: _ct_02_energy     address: 142     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 3, bank 1, pin 3, addr_offset 104   - platform: modbus_controller     id: _ct_03_energy     name: _ct_03_energy     address: 144     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 4, bank 1, pin 4, addr_offset 106   - platform: modbus_controller     id: _ct_04_energy     name: _ct_04_energy     address: 146     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 5, bank 1, pin 5, addr_offset 108   - platform: modbus_controller     id: _ct_05_energy     name: _ct_05_energy     address: 148     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 6, bank 1, pin 6, addr_offset 110   - platform: modbus_controller     id: _ct_06_energy     name: _ct_06_energy     address: 150     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 7, bank 1, pin 7, addr_offset 112   - platform: modbus_controller     id: _ct_07_energy     name: _ct_07_energy     address: 152     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 8, bank 1, pin 8, addr_offset 114   - platform: modbus_controller     id: _ct_08_energy     name: _ct_08_energy     address: 154     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 9, bank 1, pin 9, addr_offset 116   - platform: modbus_controller     id: _ct_09_energy     name: _ct_09_energy     address: 156     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 10, bank 1, pin 10, addr_offset 118   - platform: modbus_controller     id: _ct_10_energy     name: _ct_10_energy     address: 158     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 11, bank 2, pin 1, addr_offset 200   - platform: modbus_controller     id: _ct_11_energy     name: _ct_11_energy     address: 240     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 12, bank 2, pin 2, addr_offset 202   - platform: modbus_controller     id: _ct_12_energy     name: _ct_12_energy     address: 242     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 13, bank 2, pin 3, addr_offset 204   - platform: modbus_controller     id: _ct_13_energy     name: _ct_13_energy     address: 244     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 14, bank 2, pin 4, addr_offset 206   - platform: modbus_controller     id: _ct_14_energy     name: _ct_14_energy     address: 246     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 15, bank 2, pin 5, addr_offset 208   - platform: modbus_controller     id: _ct_15_energy     name: _ct_15_energy     address: 248     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 16, bank 2, pin 6, addr_offset 210   - platform: modbus_controller     id: _ct_16_energy     name: _ct_16_energy     address: 250     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 17, bank 2, pin 7, addr_offset 212   - platform: modbus_controller     id: _ct_17_energy     name: _ct_17_energy     address: 252     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 18, bank 2, pin 8, addr_offset 214   - platform: modbus_controller     id: _ct_18_energy     name: _ct_18_energy     address: 254     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 19, bank 2, pin 9, addr_offset 216   - platform: modbus_controller     id: _ct_19_energy     name: _ct_19_energy     address: 256     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 20, bank 2, pin 10, addr_offset 218   - platform: modbus_controller     id: _ct_20_energy     name: _ct_20_energy     address: 258     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 21, bank 3, pin 1, addr_offset 300   - platform: modbus_controller     id: _ct_21_energy     name: _ct_21_energy     address: 340     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 22, bank 3, pin 2, addr_offset 302   - platform: modbus_controller     id: _ct_22_energy     name: _ct_22_energy     address: 342     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 23, bank 3, pin 3, addr_offset 304   - platform: modbus_controller     id: _ct_23_energy     name: _ct_23_energy     address: 344     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 24, bank 3, pin 4, addr_offset 306   - platform: modbus_controller     id: _ct_24_energy     name: _ct_24_energy     address: 346     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 25, bank 3, pin 5, addr_offset 308   - platform: modbus_controller     id: _ct_25_energy     name: _ct_25_energy     address: 348     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 26, bank 3, pin 6, addr_offset 310   - platform: modbus_controller     id: _ct_26_energy     name: _ct_26_energy     address: 350     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 27, bank 3, pin 7, addr_offset 312   - platform: modbus_controller     id: _ct_27_energy     name: _ct_27_energy     address: 352     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 28, bank 3, pin 8, addr_offset 314   - platform: modbus_controller     id: _ct_28_energy     name: _ct_28_energy     address: 354     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 29, bank 3, pin 9, addr_offset 316   - platform: modbus_controller     id: _ct_29_energy     name: _ct_29_energy     address: 356     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 30, bank 3, pin 10, addr_offset 318   - platform: modbus_controller     id: _ct_30_energy     name: _ct_30_energy     address: 358     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 31, bank 4, pin 1, addr_offset 400   - platform: modbus_controller     id: _ct_31_energy     name: _ct_31_energy     address: 440     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 32, bank 4, pin 2, addr_offset 402   - platform: modbus_controller     id: _ct_32_energy     name: _ct_32_energy     address: 442     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 33, bank 4, pin 3, addr_offset 404   - platform: modbus_controller     id: _ct_33_energy     name: _ct_33_energy     address: 444     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 34, bank 4, pin 4, addr_offset 406   - platform: modbus_controller     id: _ct_34_energy     name: _ct_34_energy     address: 446     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 35, bank 4, pin 5, addr_offset 408   - platform: modbus_controller     id: _ct_35_energy     name: _ct_35_energy     address: 448     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 36, bank 4, pin 6, addr_offset 410   - platform: modbus_controller     id: _ct_36_energy     name: _ct_36_energy     address: 450     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 37, bank 4, pin 7, addr_offset 412   - platform: modbus_controller     id: _ct_37_energy     name: _ct_37_energy     address: 452     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 38, bank 4, pin 8, addr_offset 414   - platform: modbus_controller     id: _ct_38_energy     name: _ct_38_energy     address: 454     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 39, bank 4, pin 9, addr_offset 416   - platform: modbus_controller     id: _ct_39_energy     name: _ct_39_energy     address: 456     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 40, bank 4, pin 10, addr_offset 418   - platform: modbus_controller     id: _ct_40_energy     name: _ct_40_energy     address: 458     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 41, bank 5, pin 1, addr_offset 500   - platform: modbus_controller     id: _ct_41_energy     name: _ct_41_energy     address: 540     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 42, bank 5, pin 2, addr_offset 502   - platform: modbus_controller     id: _ct_42_energy     name: _ct_42_energy     address: 542     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 43, bank 5, pin 3, addr_offset 504   - platform: modbus_controller     id: _ct_43_energy     name: _ct_43_energy     address: 544     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 44, bank 5, pin 4, addr_offset 506   - platform: modbus_controller     id: _ct_44_energy     name: _ct_44_energy     address: 546     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 45, bank 5, pin 5, addr_offset 508   - platform: modbus_controller     id: _ct_45_energy     name: _ct_45_energy     address: 548     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 46, bank 5, pin 6, addr_offset 510   - platform: modbus_controller     id: _ct_46_energy     name: _ct_46_energy     address: 550     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 47, bank 5, pin 7, addr_offset 512   - platform: modbus_controller     id: _ct_47_energy     name: _ct_47_energy     address: 552     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 48, bank 5, pin 8, addr_offset 514   - platform: modbus_controller     id: _ct_48_energy     name: _ct_48_energy     address: 554     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 49, bank 5, pin 9, addr_offset 516   - platform: modbus_controller     id: _ct_49_energy     name: _ct_49_energy     address: 556     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 50, bank 5, pin 10, addr_offset 518   - platform: modbus_controller     id: _ct_50_energy     name: _ct_50_energy     address: 558     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 51, bank 6, pin 1, addr_offset 600   - platform: modbus_controller     id: _ct_51_energy     name: _ct_51_energy     address: 640     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 52, bank 6, pin 2, addr_offset 602   - platform: modbus_controller     id: _ct_52_energy     name: _ct_52_energy     address: 642     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 53, bank 6, pin 3, addr_offset 604   - platform: modbus_controller     id: _ct_53_energy     name: _ct_53_energy     address: 644     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 54, bank 6, pin 4, addr_offset 606   - platform: modbus_controller     id: _ct_54_energy     name: _ct_54_energy     address: 646     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 55, bank 6, pin 5, addr_offset 608   - platform: modbus_controller     id: _ct_55_energy     name: _ct_55_energy     address: 648     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 56, bank 6, pin 6, addr_offset 610   - platform: modbus_controller     id: _ct_56_energy     name: _ct_56_energy     address: 650     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 57, bank 6, pin 7, addr_offset 612   - platform: modbus_controller     id: _ct_57_energy     name: _ct_57_energy     address: 652     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 58, bank 6, pin 8, addr_offset 614   - platform: modbus_controller     id: _ct_58_energy     name: _ct_58_energy     address: 654     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 59, bank 6, pin 9, addr_offset 616   - platform: modbus_controller     id: _ct_59_energy     name: _ct_59_energy     address: 656     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3   # ct 60, bank 6, pin 10, addr_offset 618   - platform: modbus_controller     id: _ct_60_energy     name: _ct_60_energy     address: 658     register_type: holding     value_type: FP32_R     unit_of_measurement: kWh     state_class: measurement     device_class: energy     accuracy_decimals: 3 button:   # --- Individual Chip Buttons ---   - platform: template     name: "CLEAR ALL ENERGY REGISTERS"     icon: "mdi:refresh"     id: clear_btn_chip_1     on_press:       - modbus_client.write_single_coil:           address: 0x01           start_address: 520           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 521           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 522           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 523           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 524           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 525           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 526           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 527           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 528           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 529           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 530           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 531           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 532           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 533           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 534           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 535           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 536           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 537           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 538           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 539           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 540           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 541           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 542           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 543           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 544           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 545           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 546           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 547           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 548           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 549           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 550           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 551           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 552           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 553           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 554           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 555           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 556           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 557           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 558           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 559           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 560           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 561           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 562           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 563           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 564           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 565           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 566           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 567           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 568           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 569           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 570           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 571           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 572           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 573           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 574           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 575           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 576           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 577           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 578           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 579           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 580           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 581           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 582           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 583           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 584           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 585           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 586           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 587           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 588           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 589           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 590           value: true       - delay: 500ms       - modbus_client.write_single_coil:           address: 0x01           start_address: 591           value: true       - delay: 500ms