Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Jan 29, 2025
1 parent 235403f commit 81c9185
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ probe-rs run --chip rp2040 target/thumbv6m-none-eabi/debug/light
#### esp32

```sh
# Wifi credentials should be valid only if you plan to run the `light_eth` "ethernet" example.
# The `light` example gets your Wifi settings from the Matter Controller automatically.
export WIFI_SSID=foo
export WIFI_PASS=bar

cargo install espup
espup update

Expand All @@ -64,6 +69,11 @@ espflash monitor --elf target/xtensa-esp32-none-elf/debug/light
#### esp32s3

```sh
# Wifi credentials should be valid only if you plan to run the `light_eth` "ethernet" example.
# The `light` example gets your Wifi settings from the Matter Controller automatically.
export WIFI_SSID=foo
export WIFI_PASS=bar

cargo install espup
espup update

Expand All @@ -77,6 +87,11 @@ espflash monitor --elf target/xtensa-esp32s3-none-elf/debug/light
#### esp32c3

```sh
# Wifi credentials should be valid only if you plan to run the `light_eth` "ethernet" example.
# The `light` example gets your Wifi settings from the Matter Controller automatically.
export WIFI_SSID=foo
export WIFI_PASS=bar

cd esp
cargo +nightly build --target riscv32imc-unknown-none-elf --no-default-features --features esp32c3

Expand All @@ -87,6 +102,11 @@ espflash monitor --elf target/riscv32imc-unknown-none-elf/debug/light
#### esp32c6

```sh
# Wifi credentials should be valid only if you plan to run the `light_eth` "ethernet" example.
# The `light` example gets your Wifi settings from the Matter Controller automatically.
export WIFI_SSID=foo
export WIFI_PASS=bar

cd esp
cargo +nightly build --target riscv32imac-unknown-none-elf --no-default-features --features esp32c6

Expand Down

0 comments on commit 81c9185

Please sign in to comment.