|
1 |
| -# Indicator Basis Demo |
2 |
| - |
3 |
| -This demo mainly implements time, sensor data display, and some configuration functions. |
4 |
| - |
5 |
| -<figure class="third"> |
6 |
| - <img src="./docs/page1.png" width="480"/> <img src="./docs/page2.png" width="480"/> |
7 |
| - <img src="./docs/page3.png" width="480"/> <img src="./docs/page4.png" width="480"/> |
8 |
| -</figure> |
9 |
| - |
10 |
| -## Function |
11 |
| -- [x] Time display. |
12 |
| -- [x] CO2, tVOC, Temperature and Humidity data real-time display. |
13 |
| -- [x] CO2, tVOC, Temperature and Humidity history data display. |
14 |
| -- [x] Wifi config. |
15 |
| -- [x] Display config. |
16 |
| -- [x] time config. |
17 |
| - |
18 |
| - |
19 |
| -## How to use example |
20 |
| - |
21 |
| -Please first read the [User Guide](https://wiki.seeedstudio.com/SenseCAP_Indicator_Get_Started) of the SenseCAP Indicator Board to learn about its software and hardware information. |
22 |
| - |
23 |
| - |
24 |
| -### Build and Flash |
25 |
| - |
26 |
| -1. The project configure PSRAM with Octal 120M by default. please see [here](../../tools/patch/README.md#idf-patch) to enable `PSRAM Octal 120M` feature. |
27 |
| -2. Run `idf.py -p PORT flash monitor` to build, flash and monitor the project. |
28 |
| - |
29 |
| -(To exit the serial monitor, type ``Ctrl-]``.) |
30 |
| - |
31 |
| -See the [Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for full steps to configure and use ESP-IDF to build projects. |
| 1 | +# SenseCAP Indicator LoRaWAN Demo |
| 2 | + |
| 3 | +## Introduction |
| 4 | +The SenseCAP Indicator LoRaWAN Demo, developed for the ESP32 platform, showcases the application of LoRaWAN technology in environmental monitoring. It provides a user-friendly interface for managing LoRaWAN network connections and transmitting sensor data. |
| 5 | + |
| 6 | +## Usage |
| 7 | + |
| 8 | +The LoRaWAN screen is the user's gateway to control the device's network connection activities. It automates the connection to the LoRaWAN network and efficiently transmits captured sensor data. |
| 9 | + |
| 10 | +### Console Commands |
| 11 | +To adjust device settings, use the `lorawan` command in the console. This command allows you to set essential parameters like EUI, Join EUI, and App Key, crucial for connecting and authenticating your device with a LoRaWAN network. |
| 12 | + |
| 13 | + |
| 14 | +### Examples |
| 15 | +```sh |
| 16 | +lorawan --eui <Your_EUI> --join_eui <Your_Join_EUI> --app_key <Your_App_Key> |
| 17 | +``` |
| 18 | +1. **Set EUI**: |
| 19 | + ```sh |
| 20 | + lorawan --eui 0004A30B001C0530 |
| 21 | + ``` |
| 22 | + This sets the EUI of your device. |
| 23 | + |
| 24 | +2. **Set Join EUI and App Key**: |
| 25 | + ```sh |
| 26 | + lorawan --join_eui 70B3D57ED0007E4A --app_key 8AFE71A145B253E49C3031AD06827777 |
| 27 | + ``` |
| 28 | + Use this to set the Join EUI and App Key for network authentication. |
0 commit comments