Skip to content

Commit eb89528

Browse files
deadprogramconejoninja
authored andcommitted
boards: add more info for esp32/esp8266
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent 5c2c358 commit eb89528

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

content/microcontrollers/esp32.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "ESP32"
33
weight: 3
44
---
55

6-
The [Espressif ESP32]() is a tiny development board based on the Xtensa [ESP32]() family of SoC.
6+
The [Espressif ESP32](https://www.espressif.com/en/products/socs/esp32) is a powerful chip that is used on many different development boards. It includes a built-in radio that can be used for WiFi or Bluetooth wireless connections.
77

88
## Interfaces
99

@@ -15,6 +15,8 @@ The [Espressif ESP32]() is a tiny development board based on the Xtensa [ESP32](
1515
| I2C | YES | Not Yet |
1616
| ADC | YES | Not Yet |
1717
| PWM | YES | Not Yet |
18+
| WiFi | YES | Not Yet |
19+
| Bluetooth | YES | Not Yet |
1820

1921
## Machine Package Docs
2022

@@ -38,7 +40,7 @@ Now you should be able to flash your board as follows:
3840
- Build and flash your TinyGo code using the `tinygo flash` command. This command flashes the ESP32 with the blinky1 example:
3941

4042
```
41-
tinygo flash -target=esp32-wroom-32 examples/blinky1
43+
tinygo flash -target=esp32-wroom-32 -port=/dev/ttyUSB0 examples/blinky1
4244
```
4345
4446
- The ESP32 board should restart and then begin running your program.

content/microcontrollers/esp8266.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "ESP8266"
33
weight: 3
44
---
55

6-
The [Espressif ESP8266]() is a tiny development board based on the Xtensa [ESP8266]() family of SoC.
6+
The [Espressif ESP8266](https://www.espressif.com/en/products/socs/esp8266) is small yet powerful SoC that is usually used for WiFi applications thanks to its built-in radio.
77

88
## Interfaces
99

@@ -15,6 +15,7 @@ The [Espressif ESP8266]() is a tiny development board based on the Xtensa [ESP82
1515
| I2C | YES | Not Yet |
1616
| ADC | YES | Not Yet |
1717
| PWM | YES | Not Yet |
18+
| WiFi | YES | Not Yet |
1819

1920
## Machine Package Docs
2021

@@ -24,7 +25,7 @@ The [Espressif ESP8266]() is a tiny development board based on the Xtensa [ESP82
2425

2526
### CLI Flashing on Linux
2627

27-
You need to install the Espressif toolchain for Linux to use TinyGo with the ESP8266. Note that it is the same download as for the ESP32:
28+
You need to install the same toolchain for the ESP8266 as is used for the ESP32 to use the ESP8266 with TinyGo:
2829

2930
https://docs.espressif.com/projects/esp-idf/en/release-v3.0/get-started/linux-setup.html#standard-setup-of-toolchain-for-linux
3031

@@ -38,14 +39,14 @@ Now you should be able to flash your board as follows:
3839
- Build and flash your TinyGo code using the `tinygo flash` command. This command flashes the ESP8266 with the blinky1 example:
3940

4041
```
41-
tinygo flash -target=esp8266 examples/blinky1
42+
tinygo flash -target=esp8266 -port=/dev/ttyUSB examples/blinky1
4243
```
4344
4445
- The ESP8266 board should restart and then begin running your program.
4546
4647
### CLI Flashing on macOS
4748
48-
You need to install the Espressif toolchain for macOS to use TinyGo with the ESP8266. Note that it is the same download as for the ESP32:
49+
You need to install the same toolchain for the ESP8266 as is used for the ESP32 to use the ESP8266 with TinyGo:
4950
5051
https://docs.espressif.com/projects/esp-idf/en/release-v3.0/get-started/macos-setup.html
5152
@@ -66,7 +67,7 @@ Now you should be able to flash your board as follows:
6667
6768
### CLI Flashing on Windows
6869
69-
You need to install the Espressif toolchain for Windows to use TinyGo with the ESP826. Note that it is the same download as for the ESP32:
70+
You need to install the same toolchain for the ESP8266 as is used for the ESP32 to use the ESP8266 with TinyGo:
7071
7172
https://docs.espressif.com/projects/esp-idf/en/release-v3.0/get-started/windows-setup.html
7273

0 commit comments

Comments
 (0)