Skip to content

Commit f629326

Browse files
committed
Tweaks to README.md to avoid Myst syntax highlighting issues.
1 parent 50793c3 commit f629326

File tree

1 file changed

+7
-6
lines changed
  • examples/energy-management-app/linux

1 file changed

+7
-6
lines changed

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

+7-6
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,9 @@ Out[2]: <chip.native.PyChipError object at 0x7f2432b16140>
237237
```python
238238
# Read from NodeID 1234, Endpoint 1, all attributes on EnergyEvse cluster
239239
await devCtrl.ReadAttribute(1234,[(1, chip.clusters.EnergyEvse)])
240+
```
240241

242+
```
241243
{
242244
│ 1: {
243245
│ │ <class 'chip.clusters.Objects.EnergyEvse'>: {
@@ -327,7 +329,7 @@ Attribute Changed:
327329

328330
After 60 seconds the charging should automatically become disabled:
329331

330-
```python
332+
```
331333
Attribute Changed:
332334
{
333335
│ 'Endpoint': 1,
@@ -374,10 +376,6 @@ To send a test event trigger to the app, use the following commands (in
374376
chip-repl):
375377

376378
```python
377-
# Read the events
378-
await devCtrl.ReadEvent(1234,[(1, chip.clusters.EnergyEvse,1)])
379-
[]
380-
381379
# send 1st event trigger to 'install' the EVSE on a 32A supply
382380
await devCtrl.SendCommand(1234, 0, chip.clusters.GeneralDiagnostics.Commands.TestEventTrigger(enableKey=bytes([b for b in range(16)]), eventTrigger=0x0099000000000000))
383381

@@ -401,6 +399,9 @@ Now send the test event trigger to simulate the EV asking for demand:
401399

402400
# Read the events
403401
await devCtrl.ReadEvent(1234,[(1, chip.clusters.EnergyEvse,1)])
402+
```
403+
404+
```
404405
[
405406
│ EventReadResult(
406407
│ │ Header=EventHeader(
@@ -450,7 +451,7 @@ What happens when we unplug the vehicle?
450451

451452
When we re-read the events:
452453

453-
```python
454+
```
454455
[
455456
│ EventReadResult(
456457
│ │ Header=EventHeader(

0 commit comments

Comments
 (0)