From 5846472d0115f52c9db03e741dcf88de49770abe Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Sat, 16 Nov 2024 10:51:01 +0800 Subject: [PATCH] QTemp32 initial README.md file. --- demo/qtemp32/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/demo/qtemp32/README.md b/demo/qtemp32/README.md index 1e972c2..05a06cb 100644 --- a/demo/qtemp32/README.md +++ b/demo/qtemp32/README.md @@ -2,8 +2,24 @@ Demo temperature recording with ESP32 and DHT11 using QLBase. +

+ +

+ ## Firmware Libraries Used +The list below are the libraries installed to compile the [firmware.ino](firmware/firmware.ino) within the Arduino IDE for ESP32. + - [bblanchon/ArduinoJson](https://github.com/bblanchon/ArduinoJson) - JSON library for Arduino and embedded C++. Simple and efficient. - [nthnn/DynaConfig](https://github.com/nthnn/DynaConfig) - Arduino WiFi dynamic configuration library for ESP32 using captive portal authentication. - [DFRobot/DFRobot_DHT11](https://github.com/DFRobot/DFRobot_DHT11) - DHT11 is used to read the temperature and humidity of the current environment. + +## Building the app + +To get started building the app, just run the following commands: + +```bash +cd app/QTemp32 +npm install +npm run tauri build --release +```