This example is meant to represent a minimal-sized application.
Please setup ESP-IDF and CHIP Environment and refer building and commissioning guides to get started.
Usage:
./out/debug/chip-tool temperaturemeasurement read measured-value <NODE ID> 1
This example demonstrates the utilization of the diagnostic logs cluster to send diagnostic logs to the client.
In this scenario, the main/diagnostic_logs directory contains three files:
main/diagnostic_logs
├── crash.log
├── end_user_support.log
└── network_diag.log
These files contain dummy data.
# Commission the app
chip-tool pairing ble-wifi 1 SSID PASSPHRASE 20202021 3840
# Read end user support logs using response payload protocol
chip-tool diagnosticlogs retrieve-logs-request 0 0 1 0
# Read network diagnostic using BDX protocol
chip-tool diagnosticlogs retrieve-logs-request 1 0 1 0 --TransferFileDesignator network-diag.log
Optimization related to WiFi, BLuetooth, Asserts etc are the part of this example by default. To enable this option set is_debug=false from command-line.
# Reconfigure the project for additional optimizations
rm -rf sdkconfig build/
idf.py -Dis_debug=false reconfigure
# Set additional configurations if required
idf.py menuconfig
# Build, flash, and monitor the device
idf.py -p /dev/tty.SLAB_USBtoUART build flash monitor