Skip to content

Commit f212d60

Browse files
soares-sergiorestyled-commitsandy31415
authored
energy-management-app: Add instructions for Water Heater App using chip-tool and TestEventTriggers (#36307)
* energy-management-app: Document instructions for Water Heater TestEventTriggers using chip-tool * Restyled by prettier-markdown * Update examples/energy-management-app/linux/README.md Co-authored-by: Andrei Litvin <andy314@gmail.com> * Update examples/energy-management-app/linux/README.md Co-authored-by: Andrei Litvin <andy314@gmail.com> * Restyled by prettier-markdown --------- Co-authored-by: Restyled.io <commits@restyled.io> Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent daf2bce commit f212d60

File tree

1 file changed

+59
-0
lines changed
  • examples/energy-management-app/linux

1 file changed

+59
-0
lines changed

examples/energy-management-app/linux/README.md

+59
Original file line numberDiff line numberDiff line change
@@ -552,3 +552,62 @@ When we re-read the events:
552552
state was `kPluggedInCharging` prior to the EV being not detected (normally
553553
in a graceful shutdown this would be `kPluggedInNoDemand` or
554554
`kPluggedInDemand`).
555+
556+
## Water Heater App: Interaction using the chip-tool and TestEventTriggers
557+
558+
This section demonstrates how to run the Water Heater application and interact
559+
with it using the `chip-tool` and `TestEventTriggers`. By default (at the time
560+
of writing), the WaterHeater app does not configure some of its attributes with
561+
simulated values (most default to 0). The steps below set the
562+
[default](https://github.com/project-chip/connectedhomeip/blob/master/src/app/clusters/water-heater-management-server/WaterHeaterManagementTestEventTriggerHandler.h#L47)
563+
`TestEventTrigger` which
564+
`Simulate installation in a 100L tank full of water at 20C, with a target temperature of 60C, in OFF mode`.
565+
566+
Step-by-step:
567+
568+
1. Build the `energy-management-app` for linux:
569+
570+
```
571+
./scripts/build/build_examples.py --target linux-x64-energy-management-no-ble build
572+
```
573+
574+
1. Run the Water Heater application:
575+
576+
```
577+
rm /tmp/chip_* && ./out/linux-x64-energy-management-no-ble/chip-energy-management-app --application water-heater --trace-to json:log --enable-key 000102030405060708090a0b0c0d0e0f
578+
```
579+
580+
1. Commission with chip-tool as node `0x12344321`:
581+
582+
```
583+
./out/linux-x64-chip-tool-no-ble/chip-tool pairing code 0x12344321 MT:-24J0AFN00KA0648G00
584+
```
585+
586+
1. Read the `TankVolume` attribute (expect 0 by default):
587+
588+
```
589+
./out/linux-x64-chip-tool-no-ble/chip-tool waterheatermanagement read tank-volume 0x12344321 2 | grep TOO
590+
591+
[1730306361.511] [2089549:2089552] [TOO] TankVolume: 0
592+
```
593+
594+
1. Set the default TestEventTrigger (`0x0094000000000000`):
595+
596+
- `0x0094000000000000` corresponds to `kBasicInstallationTestEvent` from
597+
`WaterHeadermanagementTestEventTriggerHandler.h`
598+
- `hex:00010203...0e0f` is the `--enable-key` passed to the startup of
599+
chip-energy-management-app
600+
- `0x12344321` is the node-id that the app was commissioned on
601+
- final `0` is the endpoint on which the `GeneralDiagnostics` cluster exists
602+
to call the `TestEventTrigger` command
603+
```
604+
./out/linux-x64-chip-tool-no-ble/chip-tool generaldiagnostics test-event-trigger hex:000102030405060708090a0b0c0d0e0f 0x0094000000000000 0x12344321 0
605+
```
606+
607+
1. Read TankVolume attribute again (now expect 100):
608+
609+
```
610+
./out/linux-x64-chip-tool-no-ble/chip-tool waterheatermanagement read tank-volume 0x12344321 2 | grep TOO
611+
612+
[1730312762.703] [2153606:2153609] [TOO] TankVolume: 100
613+
```

0 commit comments

Comments
 (0)