You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Update references to FoBE Quill ESP32S3 Mesh in documentation
Corrected the naming convention for the FoBE Quill ESP32S3 Mesh across multiple documentation files to ensure consistency and clarity.
Signed-off-by: ChihoSin [email protected]
[Meshtastic](https://meshtastic.org) is a popular open-source project that allows you to create an off-grid, decentralized mesh network built to run on affordable, low-power devices.
15
15
16
-
The FoBE Quill ESP32-S3 Mesh is compatible with Meshtastic, allowing you to build your own mesh network using this development board.
16
+
The FoBE Quill ESP32S3 Mesh is compatible with Meshtastic, allowing you to build your own mesh network using this development board.
17
17
18
18
### Flashing firmware
19
19
20
-
This tutorial will guide users to flash the FoBE Quill ESP32-S3 Mesh to the Meshtastic version, for those who want to use the Meshtastic network.
20
+
This tutorial will guide users to flash the FoBE Quill ESP32S3 Mesh to the Meshtastic version, for those who want to use the Meshtastic network.
21
21
22
22
#### Preparation
23
23
24
-
- FoBE Quill ESP32-S3 Mesh Board x 1
24
+
- FoBE Quill ESP32S3 Mesh Board x 1
25
25
- USB-C cable x 1
26
26
- Computer with Python 3 installed
27
27
28
28
#### Wiring
29
29
30
-
Connect the FoBE Quill ESP32-S3 Mesh to your computer using a USB-C cable.
30
+
Connect the FoBE Quill ESP32S3 Mesh to your computer using a USB-C cable.
31
31
32
32
#### Flash Meshtastic firmware
33
33
@@ -64,6 +64,6 @@ adafruit-nrfutil --verbose dfu serial --package firmware-fobe_quill_nrf52840_mes
64
64
</TabItem>
65
65
</Tabs>
66
66
67
-
That your can use the FoBE Quill ESP32-S3 Mesh with the Meshtastic network, you can now use the Meshtastic app to configure your device and start using it.
67
+
That your can use the FoBE Quill ESP32S3 Mesh with the Meshtastic network, you can now use the Meshtastic app to configure your device and start using it.
68
68
69
69
More information can be found in the [Meshtastic documentation](https://meshtastic.org/docs/).
The FoBE Quill ESP32-S3 Mesh is a compact and feature-rich IoT development platform, integrating Espressif's high-performance multi-protocol SoC ESP32-S3 and Semtech's ultra-low-power sub-GHz radio transceiver SX1262 (SiP package). Designed for IoT applications, it provides a comprehensive wireless connectivity solution supporting IEEE 802.11 b/g/n Wi-Fi, Bluetooth 5, Thread, Zigbee, and LoRa®.
26
+
The FoBE Quill ESP32S3 Mesh is a compact and feature-rich IoT development platform, integrating Espressif's high-performance multi-protocol SoC ESP32-S3 and Semtech's ultra-low-power sub-GHz radio transceiver SX1262 (SiP package). Designed for IoT applications, it provides a comprehensive wireless connectivity solution supporting IEEE 802.11 b/g/n Wi-Fi, Bluetooth 5, Thread, Zigbee, and LoRa®.
27
27
28
28
This development board features efficient battery charging management, discrete power path, ultra-low quiescent current DC-DC converter, a 1.3-inch 16-pin OLED display (SSD1312 driver), user-programmable LED and button, MFP expansion connector, reversible USB-C connector, and easy-to-expand pin headers, making it ideal for rapid prototyping and development.
29
29
@@ -33,7 +33,7 @@ This development board features efficient battery charging management, discrete
33
33
<tr>
34
34
<tdcolspan="1"rowspan="2">Board</td>
35
35
<td>Name</td>
36
-
<td>FoBE Quill ESP32-S3 Mesh</td>
36
+
<td>FoBE Quill ESP32S3 Mesh</td>
37
37
</tr>
38
38
<tr>
39
39
<td>SKU</td>
@@ -184,7 +184,7 @@ This development board features efficient battery charging management, discrete
Copy file name to clipboardExpand all lines: docs/product/f1102/programming.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Programming
3
3
---
4
4
5
-
This guide describes how to program the FoBE Quill ESP32-S3 Mesh.
5
+
This guide describes how to program the FoBE Quill ESP32S3 Mesh.
6
6
7
7
## Arduino
8
8
@@ -50,7 +50,7 @@ You can follow the official guide of [PlatformIO](https://platformio.org/platfor
50
50
51
51
[MicroPython](https://micropython.org) is a lean and efficient implementation of the Python 3 programming language that includes a small subset of the Python standard library and is optimised to run on microcontrollers and in constrained environments.
52
52
53
-
The following describes how to program the FoBE Quill Esp32-S3 Mesh with MicroPython.
53
+
The following describes how to program the FoBE Quill ESP32S3 Mesh with MicroPython.
@@ -128,7 +128,7 @@ More information about the MicroPython REPL can be found in the [MicroPython doc
128
128
129
129
The [Zephyr OS](https://zephyrproject.org) is based on a small-footprint kernel designed for use on resource-constrained and embedded systems: from simple embedded environmental sensors and LED wearables to sophisticated embedded controllers, smart watches, and IoT wireless applications.
130
130
131
-
The following describes how to program the FoBE Quill ESP32-S3 Mesh with Zephyr RTOS.
131
+
The following describes how to program the FoBE Quill ESP32S3 Mesh with Zephyr RTOS.
132
132
133
133
### Create a new project
134
134
@@ -273,14 +273,14 @@ Before you start, make sure you have Python installed on your system.
273
273
Double-click the reset button on the device to enter bootloader mode, then run the following commands in the terminal:
274
274
275
275
```bash
276
-
# Build the project for the FoBE Quill ESP32-S3 Mesh board
276
+
# Build the project for the FoBE Quill ESP32S3 Mesh board
277
277
west build -b fobe_quill_esp32s3/esp32s3/procpu/w ./app
278
278
279
279
# Flash the project to the board
280
280
west flash
281
281
```
282
282
283
-
Now you have a simple LED blinking example (Zephyr RTOS Standalone project) running on the **FoBE Quill ESP32-S3 Mesh**.
283
+
Now you have a simple LED blinking example (Zephyr RTOS Standalone project) running on the **FoBE Quill ESP32S3 Mesh**.
FoBE Quill ESP32-S3 Mesh is a single-sided PCB with dimensions of 60.96mm x 22.86mm (2.4" x 0.9"), 1.6mm thick, featuring a USB Type-C port and dual through-hole pin headers.
20
+
FoBE Quill ESP32S3 Mesh is a single-sided PCB with dimensions of 60.96mm x 22.86mm (2.4" x 0.9"), 1.6mm thick, featuring a USB Type-C port and dual through-hole pin headers.
The FoBE Quill ESP32-S3 Mesh is designed to be powered by a battery and includes charging circuitry for lithium batteries. The charger can be powered from a wall adapter via the USB Type-C connector. The incoming USB voltage is routed exclusively to the charger IC, which monitors the battery and stops charging when it's full or if the temperature is too high (this requires soldering a thermistor to the NTC test point). The output from the charger then powers the development kit through a step-down converter.
30
+
The FoBE Quill ESP32S3 Mesh is designed to be powered by a battery and includes charging circuitry for lithium batteries. The charger can be powered from a wall adapter via the USB Type-C connector. The incoming USB voltage is routed exclusively to the charger IC, which monitors the battery and stops charging when it's full or if the temperature is too high (this requires soldering a thermistor to the NTC test point). The output from the charger then powers the development kit through a step-down converter.
31
31
32
32
A high-efficiency step-down converter (TPS62825) with a low quiescent current generates the 3.3V rail. This power supply powers the entire development kit and connected peripheral modules, supporting a maximum current of 2A.
33
33
@@ -60,7 +60,7 @@ The MFP additionally provides 4 GPIO pins, or directly connected to modules supp
60
60
61
61
## Display
62
62
63
-
The FoBE Quill ESP32-S3 Mesh features an onboard 1.3-inch monochrome OLED display, 128 x 64 resolution, 16-pin FPC, driven by an SSD1312 controller via I2C.
63
+
The FoBE Quill ESP32S3 Mesh features an onboard 1.3-inch monochrome OLED display, 128 x 64 resolution, 16-pin FPC, driven by an SSD1312 controller via I2C.
64
64
65
65
## Buttons and LEDs
66
66
@@ -74,7 +74,7 @@ There are two buttons and one blue LED connected to dedicated GPIOs on the ESP32
74
74
75
75
## Sub-GHz Radio
76
76
77
-
The FoBE Quill ESP32-S3 Mesh board features an onboard sub-GHz radio module based on the Semtech SX1262 chip. It supports LoRa and (G)FSK modulation and operates in the 433 MHz, 868 MHz, and 915 MHz frequency bands (model dependent). An integrated 1.8V TCXO ensures excellent stability, unaffected by temperature variations.
77
+
The FoBE Quill ESP32S3 Mesh board features an onboard sub-GHz radio module based on the Semtech SX1262 chip. It supports LoRa and (G)FSK modulation and operates in the 433 MHz, 868 MHz, and 915 MHz frequency bands (model dependent). An integrated 1.8V TCXO ensures excellent stability, unaffected by temperature variations.
78
78
79
79
Key specifications include an active receive current consumption of just 4.2 mA, a maximum transmit power of up to +22 dBm, and high sensitivity down to -148 dBm, providing excellent interference immunity.
80
80
@@ -95,15 +95,15 @@ The module connects to the ESP32-S3 SoC via SPI for long-range wireless communic
95
95
96
96
### Wi-Fi/Bluetooth Antenna
97
97
98
-
The FoBE Quill ESP32-S3 Mesh board has an embedded SMD ceramic antenna for the ESP32-S3 SoC, which supports Bluetooth and 2.4 GHz communication.
98
+
The FoBE Quill ESP32S3 Mesh board has an embedded SMD ceramic antenna for the ESP32-S3 SoC, which supports Bluetooth and 2.4 GHz communication.
99
99
100
100
### Sub-GHz Antenna
101
101
102
-
The FoBE Quill ESP32-S3 Mesh board has an iPEX-U.FL connector for connecting an external sub-GHz antenna.
102
+
The FoBE Quill ESP32S3 Mesh board has an iPEX-U.FL connector for connecting an external sub-GHz antenna.
103
103
104
104
## Debug interface
105
105
106
-
The FoBE Quill ESP32-S3 Mesh board provides a debug interface via USB (CDC/JTAG) and edge JTAG pins. This allows developers to program and debug their applications using compatible tools and IDEs.
106
+
The FoBE Quill ESP32S3 Mesh board provides a debug interface via USB (CDC/JTAG) and edge JTAG pins. This allows developers to program and debug their applications using compatible tools and IDEs.
107
107
108
108
## Light up the board
109
109
@@ -112,13 +112,13 @@ The FoBE Quill ESP32-S3 Mesh board provides a debug interface via USB (CDC/JTAG)
112
112
Before you begin, please make sure you have the following items:
113
113
114
114
#### Hardware
115
-
* FoBE Quill ESP32-S3 Mesh board
115
+
* FoBE Quill ESP32S3 Mesh board
116
116
* USB-C Cable (must support data transfer)
117
117
* 3.7V Li-Ion/LiPo Battery (optional, for battery-powered applications)
118
118
* Sub-GHz Antenna (optional, but if your program enables sub-GHz communication, please be sure to connect the antenna, otherwise, the module will be damaged)
119
119
120
120
#### Software
121
-
You can choose multiple IDEs for coding the FoBE Quill ESP32-S3 Mesh:
121
+
You can choose multiple IDEs for coding the FoBE Quill ESP32S3 Mesh:
@@ -127,7 +127,7 @@ Before you begin, please make sure you have the following items:
127
127
128
128
### Setup the board
129
129
130
-
To light up your FoBE Quill ESP32-S3 Mesh board, follow these steps:
130
+
To light up your FoBE Quill ESP32S3 Mesh board, follow these steps:
131
131
132
132
1. Connect the Sub-GHz antenna to the iPEX-U.FL connector on the board (if applicable).
133
133
@@ -311,6 +311,6 @@ void loop()
311
311
312
312
### Power Consumption Verification
313
313
314
-
To verify the power consumption of the FoBE Quill ESP32-S3 Mesh, you can use a multimeter or an oscilloscope to measure the current drawn by the board in different modes (sleep, active, etc.).
314
+
To verify the power consumption of the FoBE Quill ESP32S3 Mesh, you can use a multimeter or an oscilloscope to measure the current drawn by the board in different modes (sleep, active, etc.).
315
315
316
316
You can follow the [Meshtastic application guide](/product/f1102/applications#meshtastic) to set up a low-power scenario for measurement.
0 commit comments