Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
f40db8490f |
@ -3,7 +3,7 @@
|
||||
This repository is a collection of useful code snippets and configurations.
|
||||
|
||||
```bash
|
||||
shaunrd0/klips/
|
||||
github.com/shaunrd0/klips/
|
||||
├── ansible # Ansible roles, playbooks, and examples
|
||||
├── blockchain # Blockchain related project templates and examples
|
||||
├── cpp # C++ programs, datastructures, and other examples
|
||||
@ -12,6 +12,6 @@ shaunrd0/klips/
|
||||
├── figlet # Figlet fonts I like :)
|
||||
├── javascript # Javascript projects and examples
|
||||
├── python # Python scripts and tools I've made
|
||||
├── scripts # Bash scripts
|
||||
└── README.md
|
||||
├── README.md
|
||||
└── scripts # Bash scripts
|
||||
```
|
||||
|
@ -1,9 +1,5 @@
|
||||
# 01_led-button
|
||||
|
||||
This example is largely adapted from those in [ESP32-basic-starter-kit.pdf](./ESP32-basic-starter-kit.pdf).
|
||||
|
||||
The APIs in the original examples paired with this PDF have changed, and I decided to do some different things with the code and/or circuits, but the original code can be [found here](https://www.dropbox.com/scl/fo/6znlij3eb23ih4jxcpv2w/AKvB1t9CCUgoVRVtGen8Yrw?rlkey=z84anl0hs940qf9fpl7l8q8q2&e=1&dl=0).
|
||||
|
||||

|
||||
|
||||
Simple LED controlled by an on-board button.
|
||||
|
@ -1,9 +1,5 @@
|
||||
# 02_led-button-web
|
||||
|
||||
This example is largely adapted from those in [ESP32-basic-starter-kit.pdf](./ESP32-basic-starter-kit.pdf).
|
||||
|
||||
The APIs in the original examples paired with this PDF have changed, and I decided to do some different things with the code and/or circuits, but the original code can be [found here](https://www.dropbox.com/scl/fo/6znlij3eb23ih4jxcpv2w/AKvB1t9CCUgoVRVtGen8Yrw?rlkey=z84anl0hs940qf9fpl7l8q8q2&e=1&dl=0).
|
||||
|
||||

|
||||
|
||||
This example uses the same schematic as [01_led-button](../01_led-button/).
|
||||
|
@ -1,9 +1,5 @@
|
||||
# 03_temp-humidity-web
|
||||
|
||||
This example is largely adapted from those in [ESP32-basic-starter-kit.pdf](./ESP32-basic-starter-kit.pdf).
|
||||
|
||||
The APIs in the original examples paired with this PDF have changed, and I decided to do some different things with the code and/or circuits, but the original code can be [found here](https://www.dropbox.com/scl/fo/6znlij3eb23ih4jxcpv2w/AKvB1t9CCUgoVRVtGen8Yrw?rlkey=z84anl0hs940qf9fpl7l8q8q2&e=1&dl=0).
|
||||
|
||||

|
||||
|
||||
Temperature and humidity sensor served on a web page within the local network.
|
||||
|
4
esp/cpp/04_esp-idf-arduino/.gitignore
vendored
4
esp/cpp/04_esp-idf-arduino/.gitignore
vendored
@ -1,4 +1,4 @@
|
||||
build
|
||||
managed_components
|
||||
dependencies.lock
|
||||
sdkconfig.old
|
||||
|
||||
|
||||
|
@ -1,24 +1,15 @@
|
||||
# 04_esp-idf-arduino
|
||||
# 03_temp-humidity-web
|
||||
|
||||
There is no schematic for this example, it simply prints some output to the serial monitor at 115200.
|
||||
There is no schematic for this example, it simply prints some output to the serial monitor.
|
||||
This is more of a build system example for untethering yourself from the Arduino IDE.
|
||||
|
||||
To build this example you can run the following commands.
|
||||
|
||||
```bash
|
||||
# See Dependencies section below for instructions.
|
||||
source ~/path/to/esp-idf/export.sh
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j $(nproc)
|
||||
|
||||
# Flash the example to the ESP.
|
||||
make flash
|
||||
|
||||
# Check the serial monitor for 'Hello world!' output.
|
||||
idf.py monitor -b 115200
|
||||
```
|
||||
|
||||
To flash to your ESP or access the `idf.py menuconfig` menu from the ESP-IDF you can run the same commands with `make`.
|
||||
@ -39,43 +30,18 @@ ninja
|
||||
|
||||
## Dependencies
|
||||
|
||||
Install the [ESP-IDF](https://github.com/espressif/esp-idf?tab=readme-ov-file#setup-build-environment)
|
||||
The [Arduino IDE](https://github.com/arduino/arduino-ide) must be installed.
|
||||
|
||||
install [ESP-IDF](https://github.com/espressif/esp-idf?tab=readme-ov-file#setup-build-environment)
|
||||
|
||||
```bash
|
||||
# https://docs.espressif.com/projects/esp-idf/en/v5.3.2/esp32/get-started/linux-macos-setup.html#for-linux-users
|
||||
sudo apt-get install -y git wget flex bison gperf python3 python3-pip python3-venv cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0
|
||||
|
||||
git clone -b v5.3.2 --recursive https://github.com/espressif/esp-idf
|
||||
git clone -b v5.3.2 git@github.com:espressif/esp-idf.git
|
||||
cd esp-idf
|
||||
./install.sh
|
||||
|
||||
# You only need to do this if you want to use ESP-IDF's idf.py helper script.
|
||||
# This example uses cmake, so it's not required.
|
||||
. ./export.sh
|
||||
```
|
||||
|
||||
In CLion there is an official [Serial Monitor](https://plugins.jetbrains.com/plugin/8031-serial-port-monitor) plugin, or use ESP-IDF -
|
||||
|
||||
```bash
|
||||
idf.py monitor -b 115200
|
||||
```
|
||||
|
||||
## Starting Over
|
||||
|
||||
To set up this project from scratch the following commands were used
|
||||
|
||||
```bash
|
||||
# My example project directory
|
||||
cd ~/Code/klips/esp/cpp/04_esp-idf-arduino
|
||||
idf.py set-target esp32
|
||||
idf.py add-dependency "espressif/arduino-esp32^3.1.1"
|
||||
|
||||
# Autostart Arduino for use of `loop()` and `setup()` functions
|
||||
# You can also use the esp-idf `app_main()` function if preferred
|
||||
# https://docs.espressif.com/projects/arduino-esp32/en/latest/esp-idf_component.html#configuration
|
||||
# You can alternatively do this in the GUI tool `idf.py menuconfig`
|
||||
echo "CONFIG_AUTOSTART_ARDUINO=y" >> sdkconfig
|
||||
sed -i -e 's/CONFIG_FREERTOS_HZ=100/CONFIG_FREERTOS_HZ=1000/' sdkconfig
|
||||
|
||||
# Build the project
|
||||
idf.py build
|
||||
```
|
||||
|
||||
To set this project up in CLion, see [JetBrains documentation](https://www.jetbrains.com/help/clion/esp-idf.html#env-vars).
|
||||
|
431
esp/cpp/04_esp-idf-arduino/dependencies.lock
Normal file
431
esp/cpp/04_esp-idf-arduino/dependencies.lock
Normal file
@ -0,0 +1,431 @@
|
||||
dependencies:
|
||||
chmorgan/esp-libhelix-mp3:
|
||||
component_hash: cbb76089dc2c5749f7b470e2e70aedc44c9da519e04eb9a67d4c7ec275229e53
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.3
|
||||
espressif/arduino-esp32:
|
||||
component_hash: f5fc427eaeb4b84d6b644e3fac1251240a38b8c5e08122f1810a59145f00ccb0
|
||||
dependencies:
|
||||
- name: chmorgan/esp-libhelix-mp3
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 1.0.3
|
||||
- name: espressif/cbor
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 0.6.0~1
|
||||
- name: espressif/esp-dsp
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target != esp32c2
|
||||
version: ^1.3.4
|
||||
- name: espressif/esp-modbus
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.0.15
|
||||
- name: espressif/esp-sr
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target in [esp32s3]
|
||||
version: ^1.4.2
|
||||
- name: espressif/esp-zboss-lib
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: ==1.6.0
|
||||
- name: espressif/esp-zigbee-lib
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: ==1.6.0
|
||||
- name: espressif/esp_diag_data_store
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 1.0.1
|
||||
- name: espressif/esp_diagnostics
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 1.0.2
|
||||
- name: espressif/esp_hosted
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target == esp32p4
|
||||
version: ^0.0.25
|
||||
- name: espressif/esp_insights
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 1.0.1
|
||||
- name: espressif/esp_modem
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.1.0
|
||||
- name: espressif/esp_rainmaker
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 1.5.0
|
||||
- name: espressif/esp_wifi_remote
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target == esp32p4
|
||||
version: ^0.4.1
|
||||
- name: espressif/libsodium
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.0.20~1
|
||||
- name: espressif/mdns
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.2.3
|
||||
- name: espressif/network_provisioning
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: 1.0.2
|
||||
- name: espressif/qrcode
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 0.1.0~2
|
||||
- name: espressif/rmaker_common
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: target not in [esp32c2, esp32p4]
|
||||
version: 1.4.6
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.3,<5.4'
|
||||
- name: joltwallet/littlefs
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ^1.10.2
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
targets:
|
||||
- esp32
|
||||
- esp32s2
|
||||
- esp32s3
|
||||
- esp32c2
|
||||
- esp32c3
|
||||
- esp32c6
|
||||
- esp32h2
|
||||
- esp32p4
|
||||
version: 3.1.1
|
||||
espressif/cbor:
|
||||
component_hash: 440f4ee4504841cc9b4f3a8ef755776a612ac9dace355514c68b999868f990ff
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 0.6.0~1
|
||||
espressif/esp-dsp:
|
||||
component_hash: fa7fe74305df6da25867437ebcd4213e047cbfc0556cf92067ab657fce537c6e
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.5.2
|
||||
espressif/esp-modbus:
|
||||
component_hash: e42ebfdfc9d8e46821a915b4c1a5c6465c44dbd4e1bca10531e26f4adc7acc42
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.17
|
||||
espressif/esp-serial-flasher:
|
||||
component_hash: dcc42a16712a1a636509cf0bf90e14032d7f2141784b533613b267b6aa318d52
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 0.0.11
|
||||
espressif/esp-zboss-lib:
|
||||
component_hash: fad683f7e04366398b61c0eea6e6517d4fe7ec4112407e26743dc80bafc0dcdc
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.6.0
|
||||
espressif/esp-zigbee-lib:
|
||||
component_hash: 0026979f590d7f2b07f433bb0fd031a12b0c2cc0eec8584b59cb6e567d5afd82
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.6.0
|
||||
espressif/esp_diag_data_store:
|
||||
component_hash: 8849195251dbb8a2d7268335277cfa310cef36e4ac1e90cd59ad3be4269a30d7
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.1
|
||||
espressif/esp_diagnostics:
|
||||
component_hash: fe19f5ee7f0145f406d36a4d5310e4ae0c6ee1afa47f2681ada8a2ea8582d390
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
- name: espressif/rmaker_common
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.4.0
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.2
|
||||
espressif/esp_insights:
|
||||
component_hash: 2472a19de98a8b991baeeac7209765b70ce14ec2b1435dbed3abd020dd0f7227
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
- name: espressif/cbor
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: idf_version >=5.0
|
||||
version: ~0.6
|
||||
- name: espressif/esp_diag_data_store
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.0
|
||||
- name: espressif/esp_diagnostics
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.0
|
||||
- name: espressif/rmaker_common
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.4.0
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.1
|
||||
espressif/esp_modem:
|
||||
component_hash: 681d7c8417ce0f2a11a562c6998b7b379a4847be41d84673c11c0c7a6b00e918
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.3.0
|
||||
espressif/esp_rainmaker:
|
||||
component_hash: f89a4759347f3909417fb33059452f36c86befae9d10bda78b5417b7a5d19d11
|
||||
dependencies:
|
||||
- name: espressif/rmaker_common
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.4.6
|
||||
- name: espressif/network_provisioning
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: idf_version >= 5.1
|
||||
version: ~1.0.0
|
||||
- name: espressif/mdns
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: idf_version >=5.0
|
||||
version: ^1.2.0
|
||||
- name: espressif/json_parser
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.0.3
|
||||
- name: espressif/json_generator
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.1.1
|
||||
- name: espressif/esp_secure_cert_mgr
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: idf_version >=4.3
|
||||
version: ^2.2.1
|
||||
- name: espressif/esp_schedule
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.2.0
|
||||
- name: espressif/esp_rcp_update
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: idf_version >= 5.1
|
||||
version: ~1.2.0
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.5.0
|
||||
espressif/esp_rcp_update:
|
||||
component_hash: c10afbd54a17f27eed880e61262b161656e6d36ad63376c307f9273e99d0abcd
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
- name: espressif/esp-serial-flasher
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~0.0.0
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.2.0
|
||||
espressif/esp_schedule:
|
||||
component_hash: e202a9c688f7f1ab601efb91d682e4bcfaebc508dcceee1a1e0a0d2d1ca75a26
|
||||
dependencies:
|
||||
- name: espressif/rmaker_common
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
version: ~1.4.2
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.2.0
|
||||
espressif/esp_secure_cert_mgr:
|
||||
component_hash: 5d9175b416f751ba6a7cb35bdf092f0af85658ce06c4a592c7c541d8017ebeb9
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 2.5.0
|
||||
espressif/jsmn:
|
||||
component_hash: d80350c41bbaa827c98a25b6072df00884e72f54885996fab4a4f0aebce6b6c3
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.1.0
|
||||
espressif/json_generator:
|
||||
component_hash: 45033e1c199b13f1c8c1b544fb7d4e2df6a8e3071ebdcb1b22582b61a7974ff2
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.1.2
|
||||
espressif/json_parser:
|
||||
component_hash: d74b81729ad06ec11ff5eb5b1b0d7df1d00e6027fc11471f4b139c70dcf1b1e4
|
||||
dependencies:
|
||||
- name: espressif/jsmn
|
||||
registry_url: https://components.espressif.com
|
||||
require: private
|
||||
rules:
|
||||
- if: idf_version >=5.0
|
||||
version: ~1.1
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.3
|
||||
espressif/libsodium:
|
||||
component_hash: 25b968723c584a2742ca36cebe5a7ef049c6767e059f7b1e1eec69946019025d
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.2'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.20~2
|
||||
espressif/mdns:
|
||||
component_hash: 4e21149422be01c24d4b1d4dec64fa07d136d8c5d234e931f3ebf375cbde51a0
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.5.2
|
||||
espressif/network_provisioning:
|
||||
component_hash: ef2e10182fd1861e68b821491916327c25416ca7ae70e5a6e43313dbc71fe993
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.1'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.0.2
|
||||
espressif/qrcode:
|
||||
component_hash: 3b493771bc5d6ad30cbf87c25bf784aada8a08c941504355b55d6b75518ed7bc
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 0.1.0~2
|
||||
espressif/rmaker_common:
|
||||
component_hash: a3a1df881278d0351fc850b77792fe8a196ddd6dcacbea203d606329cc6a0239
|
||||
dependencies: []
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.4.6
|
||||
idf:
|
||||
source:
|
||||
type: idf
|
||||
version: 5.3.2
|
||||
joltwallet/littlefs:
|
||||
component_hash: add3caf39a265868f70e55f17e8bfb401f200e45a601dc392832e7ac2c1487bc
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=4.3'
|
||||
source:
|
||||
registry_url: https://components.espressif.com
|
||||
type: service
|
||||
version: 1.16.4
|
||||
direct_dependencies:
|
||||
- espressif/arduino-esp32
|
||||
- idf
|
||||
manifest_hash: fe35c802ba6a89901a8000205c3dac0c8d85b17fbd036b7a7dcb213e5f6e5361
|
||||
target: esp32
|
||||
version: 2.0.0
|
@ -2091,15 +2091,6 @@ CONFIG_MDNS_TASK_STACK_SIZE=4096
|
||||
CONFIG_MDNS_TASK_AFFINITY_CPU0=y
|
||||
# CONFIG_MDNS_TASK_AFFINITY_CPU1 is not set
|
||||
CONFIG_MDNS_TASK_AFFINITY=0x0
|
||||
|
||||
#
|
||||
# MDNS Memory Configuration
|
||||
#
|
||||
CONFIG_MDNS_TASK_CREATE_FROM_INTERNAL=y
|
||||
CONFIG_MDNS_MEMORY_ALLOC_INTERNAL=y
|
||||
# CONFIG_MDNS_MEMORY_CUSTOM_IMPL is not set
|
||||
# end of MDNS Memory Configuration
|
||||
|
||||
CONFIG_MDNS_SERVICE_ADD_TIMEOUT_MS=2000
|
||||
CONFIG_MDNS_TIMER_PERIOD_MS=100
|
||||
# CONFIG_MDNS_NETWORKING_SOCKET is not set
|
||||
@ -2185,230 +2176,3 @@ CONFIG_LITTLEFS_ASSERTS=y
|
||||
# end of Component config
|
||||
|
||||
# CONFIG_IDF_EXPERIMENTAL_FEATURES is not set
|
||||
|
||||
# Deprecated options for backward compatibility
|
||||
# CONFIG_APP_BUILD_TYPE_ELF_RAM is not set
|
||||
# CONFIG_NO_BLOBS is not set
|
||||
# CONFIG_ESP32_NO_BLOBS is not set
|
||||
# CONFIG_ESP32_COMPATIBLE_PRE_V2_1_BOOTLOADERS is not set
|
||||
# CONFIG_ESP32_COMPATIBLE_PRE_V3_1_BOOTLOADERS is not set
|
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_NONE is not set
|
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_ERROR is not set
|
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_WARN is not set
|
||||
CONFIG_LOG_BOOTLOADER_LEVEL_INFO=y
|
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_DEBUG is not set
|
||||
# CONFIG_LOG_BOOTLOADER_LEVEL_VERBOSE is not set
|
||||
CONFIG_LOG_BOOTLOADER_LEVEL=3
|
||||
# CONFIG_APP_ROLLBACK_ENABLE is not set
|
||||
# CONFIG_FLASH_ENCRYPTION_ENABLED is not set
|
||||
# CONFIG_FLASHMODE_QIO is not set
|
||||
# CONFIG_FLASHMODE_QOUT is not set
|
||||
CONFIG_FLASHMODE_DIO=y
|
||||
# CONFIG_FLASHMODE_DOUT is not set
|
||||
CONFIG_MONITOR_BAUD=115200
|
||||
# CONFIG_ESP_RMAKER_LOCAL_CTRL_ENABLE is not set
|
||||
CONFIG_OPTIMIZATION_LEVEL_DEBUG=y
|
||||
CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG=y
|
||||
CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y
|
||||
# CONFIG_OPTIMIZATION_LEVEL_RELEASE is not set
|
||||
# CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE is not set
|
||||
CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED=y
|
||||
# CONFIG_OPTIMIZATION_ASSERTIONS_SILENT is not set
|
||||
# CONFIG_OPTIMIZATION_ASSERTIONS_DISABLED is not set
|
||||
CONFIG_OPTIMIZATION_ASSERTION_LEVEL=2
|
||||
# CONFIG_CXX_EXCEPTIONS is not set
|
||||
CONFIG_STACK_CHECK_NONE=y
|
||||
# CONFIG_STACK_CHECK_NORM is not set
|
||||
# CONFIG_STACK_CHECK_STRONG is not set
|
||||
# CONFIG_STACK_CHECK_ALL is not set
|
||||
# CONFIG_WARN_WRITE_STRINGS is not set
|
||||
# CONFIG_ESP32_APPTRACE_DEST_TRAX is not set
|
||||
CONFIG_ESP32_APPTRACE_DEST_NONE=y
|
||||
CONFIG_ESP32_APPTRACE_LOCK_ENABLE=y
|
||||
CONFIG_ADC2_DISABLE_DAC=y
|
||||
# CONFIG_MCPWM_ISR_IN_IRAM is not set
|
||||
# CONFIG_EVENT_LOOP_PROFILING is not set
|
||||
CONFIG_POST_EVENTS_FROM_ISR=y
|
||||
CONFIG_POST_EVENTS_FROM_IRAM_ISR=y
|
||||
CONFIG_GDBSTUB_SUPPORT_TASKS=y
|
||||
CONFIG_GDBSTUB_MAX_TASKS=32
|
||||
# CONFIG_OTA_ALLOW_HTTP is not set
|
||||
# CONFIG_TWO_UNIVERSAL_MAC_ADDRESS is not set
|
||||
CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS=y
|
||||
CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS=4
|
||||
# CONFIG_ESP_SYSTEM_PD_FLASH is not set
|
||||
CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY=2000
|
||||
CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY=2000
|
||||
CONFIG_ESP32_RTC_CLK_SRC_INT_RC=y
|
||||
CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC=y
|
||||
# CONFIG_ESP32_RTC_CLK_SRC_EXT_CRYS is not set
|
||||
# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_CRYSTAL is not set
|
||||
# CONFIG_ESP32_RTC_CLK_SRC_EXT_OSC is not set
|
||||
# CONFIG_ESP32_RTC_CLOCK_SOURCE_EXTERNAL_OSC is not set
|
||||
# CONFIG_ESP32_RTC_CLK_SRC_INT_8MD256 is not set
|
||||
# CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_8MD256 is not set
|
||||
CONFIG_ESP32_RTC_CLK_CAL_CYCLES=1024
|
||||
# CONFIG_ESP32_XTAL_FREQ_26 is not set
|
||||
CONFIG_ESP32_XTAL_FREQ_40=y
|
||||
# CONFIG_ESP32_XTAL_FREQ_AUTO is not set
|
||||
CONFIG_ESP32_XTAL_FREQ=40
|
||||
CONFIG_ESP32_PHY_CALIBRATION_AND_DATA_STORAGE=y
|
||||
# CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION is not set
|
||||
CONFIG_ESP32_PHY_MAX_WIFI_TX_POWER=20
|
||||
CONFIG_ESP32_PHY_MAX_TX_POWER=20
|
||||
# CONFIG_REDUCE_PHY_TX_POWER is not set
|
||||
# CONFIG_ESP32_REDUCE_PHY_TX_POWER is not set
|
||||
# CONFIG_SPIRAM_SUPPORT is not set
|
||||
# CONFIG_ESP32_SPIRAM_SUPPORT is not set
|
||||
# CONFIG_ESP32_DEFAULT_CPU_FREQ_80 is not set
|
||||
CONFIG_ESP32_DEFAULT_CPU_FREQ_160=y
|
||||
# CONFIG_ESP32_DEFAULT_CPU_FREQ_240 is not set
|
||||
CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=160
|
||||
CONFIG_TRACEMEM_RESERVE_DRAM=0x0
|
||||
# CONFIG_ESP32_PANIC_PRINT_HALT is not set
|
||||
CONFIG_ESP32_PANIC_PRINT_REBOOT=y
|
||||
# CONFIG_ESP32_PANIC_SILENT_REBOOT is not set
|
||||
# CONFIG_ESP32_PANIC_GDBSTUB is not set
|
||||
CONFIG_SYSTEM_EVENT_QUEUE_SIZE=32
|
||||
CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE=2304
|
||||
CONFIG_MAIN_TASK_STACK_SIZE=3584
|
||||
CONFIG_CONSOLE_UART_DEFAULT=y
|
||||
# CONFIG_CONSOLE_UART_CUSTOM is not set
|
||||
# CONFIG_CONSOLE_UART_NONE is not set
|
||||
# CONFIG_ESP_CONSOLE_UART_NONE is not set
|
||||
CONFIG_CONSOLE_UART=y
|
||||
CONFIG_CONSOLE_UART_NUM=0
|
||||
CONFIG_CONSOLE_UART_BAUDRATE=115200
|
||||
CONFIG_INT_WDT=y
|
||||
CONFIG_INT_WDT_TIMEOUT_MS=300
|
||||
CONFIG_INT_WDT_CHECK_CPU1=y
|
||||
CONFIG_TASK_WDT=y
|
||||
CONFIG_ESP_TASK_WDT=y
|
||||
# CONFIG_TASK_WDT_PANIC is not set
|
||||
CONFIG_TASK_WDT_TIMEOUT_S=5
|
||||
CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=y
|
||||
CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=y
|
||||
# CONFIG_ESP32_DEBUG_STUBS_ENABLE is not set
|
||||
CONFIG_ESP32_DEBUG_OCDAWARE=y
|
||||
CONFIG_BROWNOUT_DET=y
|
||||
CONFIG_ESP32_BROWNOUT_DET=y
|
||||
CONFIG_BROWNOUT_DET_LVL_SEL_0=y
|
||||
CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0=y
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_1 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_1 is not set
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_2 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_2 is not set
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_3 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_3 is not set
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_4 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_4 is not set
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_5 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_5 is not set
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_6 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_6 is not set
|
||||
# CONFIG_BROWNOUT_DET_LVL_SEL_7 is not set
|
||||
# CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_7 is not set
|
||||
CONFIG_BROWNOUT_DET_LVL=0
|
||||
CONFIG_ESP32_BROWNOUT_DET_LVL=0
|
||||
# CONFIG_DISABLE_BASIC_ROM_CONSOLE is not set
|
||||
CONFIG_IPC_TASK_STACK_SIZE=1024
|
||||
CONFIG_TIMER_TASK_STACK_SIZE=3584
|
||||
CONFIG_ESP32_WIFI_ENABLED=y
|
||||
CONFIG_ESP32_WIFI_STATIC_RX_BUFFER_NUM=10
|
||||
CONFIG_ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM=32
|
||||
# CONFIG_ESP32_WIFI_STATIC_TX_BUFFER is not set
|
||||
CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER=y
|
||||
CONFIG_ESP32_WIFI_TX_BUFFER_TYPE=1
|
||||
CONFIG_ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM=32
|
||||
# CONFIG_ESP32_WIFI_CSI_ENABLED is not set
|
||||
CONFIG_ESP32_WIFI_AMPDU_TX_ENABLED=y
|
||||
CONFIG_ESP32_WIFI_TX_BA_WIN=6
|
||||
CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y
|
||||
CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED=y
|
||||
CONFIG_ESP32_WIFI_RX_BA_WIN=6
|
||||
CONFIG_ESP32_WIFI_RX_BA_WIN=6
|
||||
CONFIG_ESP32_WIFI_NVS_ENABLED=y
|
||||
CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_0=y
|
||||
# CONFIG_ESP32_WIFI_TASK_PINNED_TO_CORE_1 is not set
|
||||
CONFIG_ESP32_WIFI_SOFTAP_BEACON_MAX_LEN=752
|
||||
CONFIG_ESP32_WIFI_MGMT_SBUF_NUM=32
|
||||
CONFIG_ESP32_WIFI_IRAM_OPT=y
|
||||
CONFIG_ESP32_WIFI_RX_IRAM_OPT=y
|
||||
CONFIG_ESP32_WIFI_ENABLE_WPA3_SAE=y
|
||||
CONFIG_ESP32_WIFI_ENABLE_WPA3_OWE_STA=y
|
||||
CONFIG_WPA_MBEDTLS_CRYPTO=y
|
||||
CONFIG_WPA_MBEDTLS_TLS_CLIENT=y
|
||||
# CONFIG_WPA_WAPI_PSK is not set
|
||||
# CONFIG_WPA_11KV_SUPPORT is not set
|
||||
# CONFIG_WPA_MBO_SUPPORT is not set
|
||||
# CONFIG_WPA_DPP_SUPPORT is not set
|
||||
# CONFIG_WPA_11R_SUPPORT is not set
|
||||
# CONFIG_WPA_WPS_SOFTAP_REGISTRAR is not set
|
||||
# CONFIG_WPA_WPS_STRICT is not set
|
||||
# CONFIG_WPA_DEBUG_PRINT is not set
|
||||
# CONFIG_WPA_TESTING_OPTIONS is not set
|
||||
# CONFIG_ESP32_ENABLE_COREDUMP_TO_FLASH is not set
|
||||
# CONFIG_ESP32_ENABLE_COREDUMP_TO_UART is not set
|
||||
CONFIG_ESP32_ENABLE_COREDUMP_TO_NONE=y
|
||||
CONFIG_TIMER_TASK_PRIORITY=1
|
||||
CONFIG_TIMER_TASK_STACK_DEPTH=2048
|
||||
CONFIG_TIMER_QUEUE_LENGTH=10
|
||||
# CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK is not set
|
||||
# CONFIG_HAL_ASSERTION_SILIENT is not set
|
||||
# CONFIG_L2_TO_L3_COPY is not set
|
||||
CONFIG_ESP_GRATUITOUS_ARP=y
|
||||
CONFIG_GARP_TMR_INTERVAL=60
|
||||
CONFIG_TCPIP_RECVMBOX_SIZE=32
|
||||
CONFIG_TCP_MAXRTX=12
|
||||
CONFIG_TCP_SYNMAXRTX=12
|
||||
CONFIG_TCP_MSS=1440
|
||||
CONFIG_TCP_MSL=60000
|
||||
CONFIG_TCP_SND_BUF_DEFAULT=5760
|
||||
CONFIG_TCP_WND_DEFAULT=5760
|
||||
CONFIG_TCP_RECVMBOX_SIZE=6
|
||||
CONFIG_TCP_QUEUE_OOSEQ=y
|
||||
CONFIG_TCP_OVERSIZE_MSS=y
|
||||
# CONFIG_TCP_OVERSIZE_QUARTER_MSS is not set
|
||||
# CONFIG_TCP_OVERSIZE_DISABLE is not set
|
||||
CONFIG_UDP_RECVMBOX_SIZE=6
|
||||
CONFIG_TCPIP_TASK_STACK_SIZE=3072
|
||||
CONFIG_TCPIP_TASK_AFFINITY_NO_AFFINITY=y
|
||||
# CONFIG_TCPIP_TASK_AFFINITY_CPU0 is not set
|
||||
# CONFIG_TCPIP_TASK_AFFINITY_CPU1 is not set
|
||||
CONFIG_TCPIP_TASK_AFFINITY=0x7FFFFFFF
|
||||
# CONFIG_PPP_SUPPORT is not set
|
||||
CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT=y
|
||||
CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1=y
|
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_RTC is not set
|
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_HRT is not set
|
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_FRC1 is not set
|
||||
# CONFIG_ESP32_TIME_SYSCALL_USE_NONE is not set
|
||||
CONFIG_ESP32_PTHREAD_TASK_PRIO_DEFAULT=5
|
||||
CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT=3072
|
||||
CONFIG_ESP32_PTHREAD_STACK_MIN=768
|
||||
CONFIG_ESP32_DEFAULT_PTHREAD_CORE_NO_AFFINITY=y
|
||||
# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_0 is not set
|
||||
# CONFIG_ESP32_DEFAULT_PTHREAD_CORE_1 is not set
|
||||
CONFIG_ESP32_PTHREAD_TASK_CORE_DEFAULT=-1
|
||||
CONFIG_ESP32_PTHREAD_TASK_NAME_DEFAULT="pthread"
|
||||
CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS=y
|
||||
# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_FAILS is not set
|
||||
# CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ALLOWED is not set
|
||||
# CONFIG_ESP32_ULP_COPROC_ENABLED is not set
|
||||
CONFIG_SUPPRESS_SELECT_DEBUG_OUTPUT=y
|
||||
CONFIG_SUPPORT_TERMIOS=y
|
||||
CONFIG_SEMIHOSTFS_MAX_MOUNT_POINTS=1
|
||||
CONFIG_MB_MASTER_TIMEOUT_MS_RESPOND=3000
|
||||
CONFIG_MB_MASTER_DELAY_MS_CONVERT=200
|
||||
CONFIG_MB_QUEUE_LENGTH=20
|
||||
CONFIG_MB_SERIAL_TASK_STACK_SIZE=4096
|
||||
CONFIG_MB_SERIAL_BUF_SIZE=256
|
||||
CONFIG_MB_SERIAL_TASK_PRIO=10
|
||||
CONFIG_MB_CONTROLLER_SLAVE_ID_SUPPORT=y
|
||||
CONFIG_MB_CONTROLLER_SLAVE_ID=0x00112233
|
||||
CONFIG_MB_CONTROLLER_NOTIFY_TIMEOUT=20
|
||||
CONFIG_MB_CONTROLLER_NOTIFY_QUEUE_SIZE=20
|
||||
CONFIG_MB_CONTROLLER_STACK_SIZE=4096
|
||||
CONFIG_MB_EVENT_QUEUE_TIMEOUT=20
|
||||
# CONFIG_MB_TIMER_PORT_ENABLED is not set
|
||||
# End of deprecated options
|
4
esp/cpp/05_temp-humidity-web/.gitignore
vendored
4
esp/cpp/05_temp-humidity-web/.gitignore
vendored
@ -1,4 +0,0 @@
|
||||
build
|
||||
managed_components
|
||||
dependencies.lock
|
||||
sdkconfig.old
|
@ -1,18 +0,0 @@
|
||||
# For more information about build system see
|
||||
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
|
||||
# The following five lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.26)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
|
||||
project(
|
||||
#[[NAME]] temp-humidity-web
|
||||
VERSION 0.1
|
||||
DESCRIPTION "Temperature and humidity from DHT sensor served on a web page"
|
||||
LANGUAGES CXX
|
||||
)
|
||||
|
||||
# For writing pure cmake components, see the documentation
|
||||
# https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build-system.html#writing-pure-cmake-components
|
||||
idf_build_set_property(COMPILE_OPTIONS "-Wno-error" APPEND)
|
@ -1,27 +0,0 @@
|
||||
# 05_temp-humidity-web
|
||||
|
||||
This is the same example in [03_temp-humidity-web](./../03_temp-humidity-web), ported to the cmake ESP-IDF build system.
|
||||
|
||||
For instructions on setting up the ESP-IDF see [04_-esp-idf-arduino](./../04_esp-idf-arduino)
|
||||
|
||||
This example is largely adapted from those in [ESP32-basic-starter-kit.pdf](./ESP32-basic-starter-kit.pdf).
|
||||
|
||||
The APIs in the original examples paired with this PDF have changed, and I decided to do some different things with the code and/or circuits, but the original code can be [found here](https://www.dropbox.com/scl/fo/6znlij3eb23ih4jxcpv2w/AKvB1t9CCUgoVRVtGen8Yrw?rlkey=z84anl0hs940qf9fpl7l8q8q2&e=1&dl=0).
|
||||
|
||||

|
||||
|
||||
Temperature and humidity sensor served on a web page within the local network.
|
||||
|
||||

|
||||
|
||||
To build this example run the following commands.
|
||||
|
||||
```bash
|
||||
source ~/path/to/esp-idf/export.sh
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j $(nproc)
|
||||
make flash
|
||||
```
|
@ -1,4 +0,0 @@
|
||||
idf_component_register(
|
||||
SRCS "main.cpp"
|
||||
INCLUDE_DIRS "."
|
||||
)
|
@ -1,19 +0,0 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
## Required IDF version
|
||||
idf:
|
||||
version: '>=4.1.0'
|
||||
# # Put list of dependencies here
|
||||
# # For components maintained by Espressif:
|
||||
# component: "~1.0.0"
|
||||
# # For 3rd party components:
|
||||
# username/component: ">=1.0.0,<2.0.0"
|
||||
# username2/component2:
|
||||
# version: "~1.0.0"
|
||||
# # For transient dependencies `public` flag can be set.
|
||||
# # `public` flag doesn't have an effect dependencies of the `main` component.
|
||||
# # All dependencies of `main` are public by default.
|
||||
# public: true
|
||||
espressif/arduino-esp32: ^3.1.1
|
||||
zorxx/dht: ^1.0.1
|
||||
esp32async/espasyncwebserver: ^3.7.0~1
|
@ -1,189 +0,0 @@
|
||||
#include "WiFi.h"
|
||||
#include "ESPAsyncWebServer.h"
|
||||
#include "main.h"
|
||||
|
||||
// Replace with your network credentials
|
||||
const char *ssid = "wifi";
|
||||
const char *password = "password";
|
||||
|
||||
#define DHTPIN GPIO_NUM_4 // Digital pin connected to the DHT sensor
|
||||
|
||||
// Uncomment the type of sensor in use:
|
||||
#define DHTTYPE DHT_TYPE_DHT11 // DHT 11
|
||||
//#define DHTTYPE DHT_TYPE_DHT22 // DHT 22 (AM2302)
|
||||
//#define DHTTYPE DHT_TYPE_DHT21 // DHT 21 (AM2301)
|
||||
|
||||
float DHT::readTemperature(bool f)
|
||||
{
|
||||
float humidity = 0;
|
||||
float temperature = 0;
|
||||
esp_err_t result = dht_read_float_data(type_, gpio_, &humidity,
|
||||
&temperature);
|
||||
if (result == ESP_OK) {
|
||||
ESP_LOGI("[DHT::readTemperature]", "Humidity: %.1f%% Temperature: %.1f°C",
|
||||
humidity,
|
||||
temperature);
|
||||
} else {
|
||||
ESP_LOGE("[DHT::readTemperature]", "Failed to read sensor data: %s",
|
||||
esp_err_to_name(result));
|
||||
}
|
||||
return f ? (temperature * 1.8f) + 32 : temperature;
|
||||
}
|
||||
|
||||
float DHT::readHumidity()
|
||||
{
|
||||
float humidity = 0;
|
||||
float temperature = 0;
|
||||
esp_err_t result = dht_read_float_data(type_, gpio_, &humidity,
|
||||
&temperature);
|
||||
if (result == ESP_OK) {
|
||||
ESP_LOGI("[DHT::readTemperature]", "Humidity: %.1f%% Temperature: %.1f°C",
|
||||
humidity,
|
||||
temperature);
|
||||
} else {
|
||||
ESP_LOGE("[DHT::readTemperature]", "Failed to read sensor data: %s",
|
||||
esp_err_to_name(result));
|
||||
}
|
||||
return humidity;
|
||||
}
|
||||
|
||||
DHT dht(DHTPIN, DHTTYPE);
|
||||
|
||||
// Create AsyncWebServer object on port 80
|
||||
AsyncWebServer server(80);
|
||||
|
||||
String readDHTTemperature()
|
||||
{
|
||||
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
|
||||
float t = dht.readTemperature();
|
||||
// Check if any reads failed and exit early (to try again).
|
||||
if (isnan(t)) {
|
||||
Serial.println("Failed to read from DHT sensor!");
|
||||
return "--";
|
||||
} else {
|
||||
Serial.println(t);
|
||||
return String(t);
|
||||
}
|
||||
}
|
||||
|
||||
String readDHTHumidity()
|
||||
{
|
||||
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
|
||||
float h = dht.readHumidity();
|
||||
if (isnan(h)) {
|
||||
Serial.println("Failed to read from DHT sensor!");
|
||||
return "--";
|
||||
} else {
|
||||
Serial.println(h);
|
||||
return String(h);
|
||||
}
|
||||
}
|
||||
|
||||
const char index_html[] PROGMEM = R"rawliteral(
|
||||
<!DOCTYPE HTML><html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
|
||||
<style>
|
||||
html {
|
||||
font-family: Arial;
|
||||
display: inline-block;
|
||||
margin: 0px auto;
|
||||
text-align: center;
|
||||
}
|
||||
h2 { font-size: 3.0rem; }
|
||||
p { font-size: 3.0rem; }
|
||||
.units { font-size: 1.2rem; }
|
||||
.dht-labels{
|
||||
font-size: 1.5rem;
|
||||
vertical-align:middle;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2>ESP32 DHT Server</h2>
|
||||
<p>
|
||||
<i class="fas fa-thermometer-half" style="color:#059e8a;"></i>
|
||||
<span class="dht-labels">Temperature</span>
|
||||
<span id="temperature">%TEMPERATURE%</span>
|
||||
<sup class="units">°C</sup>
|
||||
</p>
|
||||
<p>
|
||||
<i class="fas fa-tint" style="color:#00add6;"></i>
|
||||
<span class="dht-labels">Humidity</span>
|
||||
<span id="humidity">%HUMIDITY%</span>
|
||||
<sup class="units">%</sup>
|
||||
</p>
|
||||
</body>
|
||||
<script>
|
||||
setInterval(function ( ) {
|
||||
var xhttp = new XMLHttpRequest();
|
||||
xhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
document.getElementById("temperature").innerHTML = this.responseText;
|
||||
}
|
||||
};
|
||||
xhttp.open("GET", "/temperature", true);
|
||||
xhttp.send();
|
||||
}, 10000 ) ;
|
||||
|
||||
setInterval(function ( ) {
|
||||
var xhttp = new XMLHttpRequest();
|
||||
xhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
document.getElementById("humidity").innerHTML = this.responseText;
|
||||
}
|
||||
};
|
||||
xhttp.open("GET", "/humidity", true);
|
||||
xhttp.send();
|
||||
}, 10000 ) ;
|
||||
</script>
|
||||
</html>)rawliteral";
|
||||
|
||||
// Replaces placeholder with DHT values
|
||||
String processor(const String &var)
|
||||
{
|
||||
//Serial.println(var);
|
||||
if (var == "TEMPERATURE") {
|
||||
return readDHTTemperature();
|
||||
} else if (var == "HUMIDITY") {
|
||||
return readDHTHumidity();
|
||||
}
|
||||
return String();
|
||||
}
|
||||
|
||||
void setup()
|
||||
{
|
||||
// Serial port for debugging purposes
|
||||
Serial.begin(115200);
|
||||
|
||||
// Connect to Wi-Fi
|
||||
WiFi.begin(ssid, password);
|
||||
while (WiFi.status() != WL_CONNECTED) {
|
||||
delay(1000);
|
||||
Serial.println("Connecting to WiFi..");
|
||||
}
|
||||
|
||||
// Print ESP32 Local IP Address
|
||||
Serial.println(WiFi.localIP());
|
||||
|
||||
// Route for root / web page
|
||||
server.on("/", HTTP_GET, [ ](AsyncWebServerRequest *request) {
|
||||
request->send(200, "text/html", index_html, processor);
|
||||
});
|
||||
server.on("/temperature", HTTP_GET, [ ](AsyncWebServerRequest *request) {
|
||||
request->send(200, "text/plain", readDHTTemperature().c_str());
|
||||
});
|
||||
server.on("/humidity", HTTP_GET, [ ](AsyncWebServerRequest *request) {
|
||||
request->send(200, "text/plain", readDHTHumidity().c_str());
|
||||
});
|
||||
|
||||
// Start server
|
||||
server.begin();
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
#ifndef MAIN_H
|
||||
#define MAIN_H
|
||||
|
||||
#include <cstdint>
|
||||
#include "dht.h"
|
||||
|
||||
class DHT {
|
||||
public:
|
||||
DHT(gpio_num_t gpio, dht_sensor_type_t type) :
|
||||
gpio_(gpio), type_(type) { }
|
||||
|
||||
~DHT() = default;
|
||||
|
||||
/**
|
||||
* Read temperature from DHT sensor
|
||||
*
|
||||
* @param f True to return in Fahrenheit, False for Celsius.
|
||||
*/
|
||||
float readTemperature(bool f = true);
|
||||
|
||||
/**
|
||||
* Read humidity from DHT sensor.
|
||||
*/
|
||||
float readHumidity();
|
||||
|
||||
private:
|
||||
gpio_num_t gpio_;
|
||||
dht_sensor_type_t type_;
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif // MAIN_H
|
Binary file not shown.
Before Width: | Height: | Size: 238 KiB |
Binary file not shown.
Before Width: | Height: | Size: 33 KiB |
File diff suppressed because it is too large
Load Diff
4
esp/cpp/06_i2c-scanner/.gitignore
vendored
4
esp/cpp/06_i2c-scanner/.gitignore
vendored
@ -1,4 +0,0 @@
|
||||
build
|
||||
managed_components
|
||||
dependencies.lock
|
||||
sdkconfig.old
|
@ -1,17 +0,0 @@
|
||||
# For more information about build system see
|
||||
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
|
||||
# The following five lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.26)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
|
||||
project(
|
||||
#[[NAME]] i2c-scanner
|
||||
VERSION 0.1
|
||||
DESCRIPTION "Simple I2C device scanner"
|
||||
LANGUAGES CXX
|
||||
)
|
||||
# For writing pure cmake components, see the documentation
|
||||
# https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build-system.html#writing-pure-cmake-components
|
||||
idf_build_set_property(COMPILE_OPTIONS "-Wno-error" APPEND)
|
@ -1,32 +0,0 @@
|
||||
# 06_i2c-scanner
|
||||
|
||||

|
||||
|
||||
Simple I2C device scanner.
|
||||
|
||||
For this example I used this [SSD1306 OLED display](https://www.digikey.com/en/products/detail/winstar-display/WEA012864DWPP3N00003/20533255).
|
||||
|
||||
To build the example run the following commands.
|
||||
|
||||
```bash
|
||||
source ~/path/to/esp-idf/export.sh
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j $(nproc)
|
||||
|
||||
# Flash to ESP32
|
||||
make flash
|
||||
|
||||
# Open Serial Monitor, press CTRL+] to exit.
|
||||
make monitor
|
||||
```
|
||||
|
||||
Expected output in serial monitor at 115200 baud
|
||||
|
||||
```bash
|
||||
Scanning I2C devices...
|
||||
[0x3c]: Device found with clock rate 100000 and timeout 50
|
||||
Done.
|
||||
```
|
@ -1,4 +0,0 @@
|
||||
idf_component_register(
|
||||
SRCS "main.cpp"
|
||||
INCLUDE_DIRS "."
|
||||
)
|
@ -1,17 +0,0 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
## Required IDF version
|
||||
idf:
|
||||
version: '>=5.3.0'
|
||||
# # Put list of dependencies here
|
||||
# # For components maintained by Espressif:
|
||||
# component: "~1.0.0"
|
||||
# # For 3rd party components:
|
||||
# username/component: ">=1.0.0,<2.0.0"
|
||||
# username2/component2:
|
||||
# version: "~1.0.0"
|
||||
# # For transient dependencies `public` flag can be set.
|
||||
# # `public` flag doesn't have an effect dependencies of the `main` component.
|
||||
# # All dependencies of `main` are public by default.
|
||||
# public: true
|
||||
espressif/arduino-esp32: ^3.1.1
|
@ -1,35 +0,0 @@
|
||||
#include "Arduino.h"
|
||||
#include "Wire.h"
|
||||
|
||||
[[maybe_unused]] static const char *TAG = "i2c-scanner";
|
||||
|
||||
void i2c_scan()
|
||||
{
|
||||
uint8_t device_num = 0;
|
||||
Serial.println("Scanning I2C devices...");
|
||||
for (byte address = 1; address < 127; address++) {
|
||||
Wire.beginTransmission(address);
|
||||
byte error = Wire.endTransmission();
|
||||
if (error == 0) {
|
||||
Serial.printf(
|
||||
"[0x%.2x]: Device found with clock rate %lu and timeout %u\n",
|
||||
address,
|
||||
Wire.getClock(), Wire.getTimeOut());
|
||||
device_num++;
|
||||
} else if (error == 4) {
|
||||
Serial.printf("[0x%.2x]: Unknown error.\n", address);
|
||||
}
|
||||
}
|
||||
Serial.println(device_num > 0 ? "Done.\n" : "No I2C devices found.\n");
|
||||
}
|
||||
|
||||
void setup()
|
||||
{
|
||||
Serial.begin(115200);
|
||||
Wire.begin();
|
||||
}
|
||||
|
||||
void loop()
|
||||
{
|
||||
i2c_scan();
|
||||
}
|
Binary file not shown.
Before Width: | Height: | Size: 227 KiB |
4
esp/cpp/07_lcd-panel-i2c/.gitignore
vendored
4
esp/cpp/07_lcd-panel-i2c/.gitignore
vendored
@ -1,4 +0,0 @@
|
||||
build
|
||||
managed_components
|
||||
dependencies.lock
|
||||
sdkconfig.old
|
@ -1,17 +0,0 @@
|
||||
# For more information about build system see
|
||||
# https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html
|
||||
# The following five lines of boilerplate have to be in your project's
|
||||
# CMakeLists in this exact order for cmake to work correctly
|
||||
cmake_minimum_required(VERSION 3.26)
|
||||
|
||||
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
||||
|
||||
project(
|
||||
#[[NAME]] lcd-panel-i2c
|
||||
VERSION 0.1
|
||||
DESCRIPTION "Using the SSD1306 LCD display with ESP-IDF and LVGL over I2C"
|
||||
LANGUAGES CXX
|
||||
)
|
||||
# For writing pure cmake components, see the documentation
|
||||
# https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build-system.html#writing-pure-cmake-components
|
||||
idf_build_set_property(COMPILE_OPTIONS "-Wno-error" APPEND)
|
@ -1,27 +0,0 @@
|
||||
# 07_lcd-panel-i2c
|
||||
|
||||
Using the ESP IDF for drawing to a LCD screen over I2C.
|
||||
|
||||
[ESP IDF - I2C](https://docs.espressif.com/projects/esp-idf/en/v5.3.2/esp32/api-reference/peripherals/i2c.html)
|
||||
|
||||
[ESP IDF - LCD](https://docs.espressif.com/projects/esp-idf/en/v5.3.2/esp32/api-reference/peripherals/lcd/index.html)
|
||||
|
||||
[ESP IDF - FreeRTOS](https://docs.espressif.com/projects/esp-idf/en/v5.3.2/esp32/api-reference/system/freertos.html)
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
For instructions on setting up the ESP-IDF see [04_-esp-idf-arduino](./../04_esp-idf-arduino)
|
||||
|
||||
To build this example run the following commands.
|
||||
|
||||
```bash
|
||||
source ~/path/to/esp-idf/export.sh
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
make -j $(nproc)
|
||||
make flash
|
||||
```
|
Binary file not shown.
Before Width: | Height: | Size: 887 KiB |
@ -1,7 +0,0 @@
|
||||
idf_component_register(
|
||||
SRCS
|
||||
main.cpp display.cpp panel_device.cpp scoped_lock.cpp
|
||||
i2c.h time_keeper.h panel.h ssd1306.h
|
||||
INCLUDE_DIRS .
|
||||
REQUIRES driver
|
||||
)
|
@ -1,56 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#include <lv_init.h>
|
||||
|
||||
#include "display.h"
|
||||
|
||||
// Static TimeKeeper for managing ESP timers across all displays.
|
||||
TimeKeeper Display::timers_;
|
||||
|
||||
Display::Display(IPanelDevice &device) :
|
||||
panel_(device)
|
||||
{
|
||||
if (!lv_is_initialized()) {
|
||||
ESP_LOGI(TAG, "Initialize LVGL");
|
||||
lv_init();
|
||||
}
|
||||
|
||||
ESP_LOGI(TAG, "Creating LVGL display");
|
||||
lv_display_ = panel_.device_->create_display();
|
||||
// associate the i2c panel handle to the display
|
||||
lv_display_set_user_data(lv_display_, panel_.esp_panel_);
|
||||
|
||||
panel_.register_display_callbacks(lv_display_);
|
||||
}
|
||||
|
||||
void Display::set_text(const char *text,
|
||||
const char *name,
|
||||
lv_label_long_mode_t long_mode,
|
||||
lv_align_t align)
|
||||
{
|
||||
// Lock the mutex due to the LVGL APIs are not thread-safe.
|
||||
ScopedLock lock;
|
||||
|
||||
ESP_LOGI(TAG, "Display LVGL Scroll Text");
|
||||
lv_obj_t *scr = lv_display_get_screen_active(lv_display_);
|
||||
|
||||
// Create the label if it's `name` doesn't already exist in the map keys.
|
||||
if (!lv_objects_.count(name)) {
|
||||
lv_objects_[name] = lv_label_create(scr);
|
||||
}
|
||||
auto obj = lv_objects_[name];
|
||||
|
||||
// Set text and long mode.
|
||||
lv_label_set_long_mode(obj, long_mode);
|
||||
lv_label_set_text(obj, text);
|
||||
|
||||
// Set the size of the screen.
|
||||
// If you use rotation 90 or 270 use lv_display_get_vertical_resolution.
|
||||
lv_obj_set_width(obj, lv_display_get_horizontal_resolution(lv_display_));
|
||||
lv_obj_align(obj, align, 0, 0);
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef DISPLAY_H
|
||||
#define DISPLAY_H
|
||||
|
||||
#include <widgets/label/lv_label.h>
|
||||
|
||||
#include <unordered_map>
|
||||
|
||||
#include "time_keeper.h"
|
||||
#include "panel.h"
|
||||
#include "scoped_lock.h"
|
||||
|
||||
/**
|
||||
* Encapsulates lv_display handle and related LVGL operations.
|
||||
* Contains helper methods that wrap basic LVGL operations such as drawing text.
|
||||
* The underlying lv_display can be obtained for manual LVGL operations.
|
||||
* @sa ScopedLock
|
||||
* @sa Display::get()
|
||||
*/
|
||||
class Display {
|
||||
public:
|
||||
/**
|
||||
* Construct a new Display using an object that implements IPanelDevice.
|
||||
*
|
||||
* @param device An object that implements the IPanelDevice interface.
|
||||
*/
|
||||
explicit Display(IPanelDevice &device);
|
||||
|
||||
~Display() = default;
|
||||
|
||||
Display(const Display &) = delete;
|
||||
|
||||
Display(Display &) = delete;
|
||||
|
||||
Display &operator=(Display &) = delete;
|
||||
|
||||
using lv_display_handle_t = lv_display_t *;
|
||||
|
||||
//
|
||||
// GETTERS
|
||||
|
||||
/**
|
||||
* Getter for accessing LVGL display handle.
|
||||
*
|
||||
* @sa ScopedLock for calling custom LVGL API's not implemented by Display.
|
||||
*/
|
||||
[[nodiscard]] inline lv_display_handle_t get() const { return lv_display_; }
|
||||
|
||||
/**
|
||||
* Getter for accessing LVGL display handle.
|
||||
*
|
||||
* @sa ScopedLock for calling custom LVGL API's not implemented by Display.
|
||||
*/
|
||||
[[nodiscard]] inline lv_display_handle_t get() { return lv_display_; }
|
||||
|
||||
/// Dereference operator for accessing LVGL display handle.
|
||||
[[nodiscard]] inline lv_display_handle_t operator*() const { return get(); }
|
||||
|
||||
/// Dereference operator for accessing LVGL display handle.
|
||||
[[nodiscard]] inline lv_display_handle_t operator*() { return get(); }
|
||||
|
||||
//
|
||||
// LVGL OPERATIONS
|
||||
|
||||
/**
|
||||
* Create a LVGL label with some given text on the current display.
|
||||
* The name of the object can be reused to change text on this label later.
|
||||
*
|
||||
* @param text Text to write to the display.
|
||||
* @param name Name for the LVGL label object associated with this text.
|
||||
* @param long_mode LVGL long mode for text wider than the current display.
|
||||
* @param align LVGL alignment to use for placing the label on the display.
|
||||
*/
|
||||
void set_text(const char *text,
|
||||
const char *name,
|
||||
lv_label_long_mode_t long_mode = LV_LABEL_LONG_SCROLL_CIRCULAR,
|
||||
lv_align_t align = LV_ALIGN_TOP_MID);
|
||||
|
||||
//
|
||||
// PUBLIC STATIC MEMBERS
|
||||
|
||||
/// Public static TimeKeeper for managing ESP timers across all displays.
|
||||
static TimeKeeper timers_;
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE MEMBERS
|
||||
|
||||
/// Panel associated with this Display.
|
||||
Panel panel_;
|
||||
|
||||
/// LVGL display handle.
|
||||
lv_display_handle_t lv_display_;
|
||||
|
||||
/**
|
||||
* LVGL object handles stored in the LVGL screen associated with this Display.
|
||||
*
|
||||
* @sa Display::set_text
|
||||
* @sa lv_display_get_screen_active
|
||||
*/
|
||||
std::unordered_map<const char *, lv_obj_t *> lv_objects_;
|
||||
|
||||
/// Tag used for ESP logging.
|
||||
constexpr static const char *TAG = "Display";
|
||||
};
|
||||
|
||||
#endif // DISPLAY_H
|
@ -1,91 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef I2C_H
|
||||
#define I2C_H
|
||||
|
||||
#define I2C_BUS_PORT 0
|
||||
|
||||
#include <driver/i2c_master.h>
|
||||
|
||||
/**
|
||||
* Encapsulates ESP I2C creation and usage.
|
||||
*/
|
||||
struct I2C {
|
||||
/**
|
||||
* Construct and initialize an ESP I2C master bus.
|
||||
* An I2C constructor may only be called one time in any application.
|
||||
*
|
||||
* @param sda GPIO pin number for SDA
|
||||
* @param scl GPIO pin number for SCL
|
||||
* @param rst GPIO pin number for RST
|
||||
*/
|
||||
I2C(gpio_num_t sda, gpio_num_t scl, int rst = -1) :
|
||||
I2C((i2c_master_bus_config_t) {
|
||||
.i2c_port = I2C_BUS_PORT,
|
||||
.sda_io_num = sda,
|
||||
.scl_io_num = scl,
|
||||
.clk_source = I2C_CLK_SRC_DEFAULT,
|
||||
.glitch_ignore_cnt = 7,
|
||||
.flags {
|
||||
.enable_internal_pullup = true,
|
||||
},
|
||||
},
|
||||
rst
|
||||
) { }
|
||||
|
||||
/**
|
||||
* Construct an ESP I2C master bus given a specific ESP I2C configuration.
|
||||
* An I2C constructor may only be called one time in any application.
|
||||
*
|
||||
* @param config ESP I2C master bus configuration.
|
||||
* @param rst GPIO pin number for RST
|
||||
*/
|
||||
explicit I2C(i2c_master_bus_config_t config, int rst = -1) :
|
||||
esp_bus_config_(config),
|
||||
rst_num_(rst)
|
||||
{
|
||||
i2c_master_bus_handle_t i2c;
|
||||
ESP_LOGI(TAG, "Initializing new master I2C bus");
|
||||
ESP_ERROR_CHECK(i2c_new_master_bus(&esp_bus_config_, &i2c));
|
||||
}
|
||||
|
||||
~I2C() = default;
|
||||
|
||||
//
|
||||
// GETTERS
|
||||
|
||||
/**
|
||||
* ESP I2C master bus handle getter.
|
||||
* This will fail if an I2C instance was never constructed.
|
||||
*/
|
||||
static i2c_master_bus_handle_t get()
|
||||
{
|
||||
i2c_master_bus_handle_t i2c = nullptr;
|
||||
ESP_ERROR_CHECK(i2c_master_get_bus_handle(0, &i2c));
|
||||
return i2c;
|
||||
}
|
||||
|
||||
//
|
||||
// PUBLIC MEMBERS
|
||||
|
||||
/// ESP I2C master bus configuration used during initialization.
|
||||
i2c_master_bus_config_t esp_bus_config_;
|
||||
|
||||
/// RST GPIO pin number.
|
||||
int rst_num_;
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE MEMBERS
|
||||
|
||||
/// Tag used for ESP logging.
|
||||
constexpr static const char *TAG = "I2C";
|
||||
};
|
||||
|
||||
#endif //I2C_H
|
@ -1,5 +0,0 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
idf: '>=5.3.0'
|
||||
lvgl/lvgl: "9.2.0"
|
||||
esp_lcd_sh1107: "^1"
|
@ -1,39 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#include "display.h"
|
||||
#include "ssd1306.h"
|
||||
|
||||
// Pin may vary based on your schematic.
|
||||
#define PIN_SDA GPIO_NUM_21
|
||||
#define PIN_SCL GPIO_NUM_22
|
||||
#define PIN_RST (-1)
|
||||
|
||||
I2C i2c(PIN_SDA, PIN_SCL, PIN_RST);
|
||||
|
||||
extern "C" void app_main(void)
|
||||
{
|
||||
SSD1306 ssd1306(i2c);
|
||||
Display d(ssd1306);
|
||||
|
||||
d.set_text("Test test 12345678910",
|
||||
"test-text1",
|
||||
LV_LABEL_LONG_SCROLL,
|
||||
LV_ALIGN_CENTER);
|
||||
|
||||
d.set_text("Test test changing text",
|
||||
"test-text1",
|
||||
LV_LABEL_LONG_SCROLL,
|
||||
LV_ALIGN_CENTER);
|
||||
|
||||
d.set_text("Hello hello hello hello hello hello hello hello!", "test-text2");
|
||||
|
||||
d.set_text("A random sentence with no meaning at all.",
|
||||
"test-text3",
|
||||
LV_LABEL_LONG_CLIP,
|
||||
LV_ALIGN_BOTTOM_MID);
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef PANEL_H
|
||||
#define PANEL_H
|
||||
|
||||
#include "panel_device.h"
|
||||
|
||||
/**
|
||||
* Encapsulates esp_lcd_panel handles and operations.
|
||||
* The only exception is esp_lcd_panel_io_i2c_config_t owned by IPanelDevice.
|
||||
* This structure requires details specific to the implementing device.
|
||||
*
|
||||
* Panel is an implementation detail of Display, not meant to be used directly.
|
||||
*/
|
||||
struct Panel {
|
||||
/**
|
||||
* Construct a new Panel using an object that implements IPanelDevice.
|
||||
*
|
||||
* @param device An object that implements the IPanelDevice interface.
|
||||
*/
|
||||
explicit Panel(IPanelDevice &device) :
|
||||
device_(&device),
|
||||
esp_io_(nullptr),
|
||||
esp_panel_(nullptr),
|
||||
esp_panel_config_(
|
||||
(esp_lcd_panel_dev_config_t) {
|
||||
.reset_gpio_num = device_->rst_num_,
|
||||
.bits_per_pixel = 1,
|
||||
.vendor_config = device_->vendor_config(),
|
||||
}
|
||||
)
|
||||
{
|
||||
esp_io_ = device_->create_io_handle();
|
||||
|
||||
device_->create_panel(esp_panel_config_, esp_io_, esp_panel_);
|
||||
|
||||
ESP_LOGI(TAG, "Resetting panel display");
|
||||
ESP_ERROR_CHECK(esp_lcd_panel_reset(esp_panel_));
|
||||
ESP_LOGI(TAG, "Initializing panel display");
|
||||
ESP_ERROR_CHECK(esp_lcd_panel_init(esp_panel_));
|
||||
ESP_LOGI(TAG, "Turning on panel display");
|
||||
ESP_ERROR_CHECK(esp_lcd_panel_disp_on_off(esp_panel_, true));
|
||||
}
|
||||
|
||||
~Panel() = default;
|
||||
|
||||
//
|
||||
// PUBLIC MEMBERS
|
||||
|
||||
/// Pointer to object using known interface for IPanelDevice.
|
||||
IPanelDevice *device_;
|
||||
|
||||
/// ESP LCD panel IO handle.
|
||||
esp_lcd_panel_io_handle_t esp_io_;
|
||||
|
||||
/// ESP LCD panel handle.
|
||||
esp_lcd_panel_handle_t esp_panel_;
|
||||
|
||||
/// ESP LCD panel configuration structure.
|
||||
esp_lcd_panel_dev_config_t esp_panel_config_;
|
||||
|
||||
/**
|
||||
* Registers LVGL draw buffers and callbacks for rendering the display.
|
||||
*
|
||||
* @param display_handle Pointer to the LVGL display to use for rendering.
|
||||
*/
|
||||
inline void register_display_callbacks(lv_display_t *display_handle) const
|
||||
{
|
||||
device_->register_rendering_data(display_handle, esp_io_);
|
||||
device_->register_lvgl_tick_timer();
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE MEMBERS
|
||||
|
||||
/// Tag used for ESP logging.
|
||||
constexpr static const char *TAG = "Panel";
|
||||
};
|
||||
|
||||
#endif //PANEL_H
|
@ -1,145 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#include "panel_device.h"
|
||||
#include "display.h"
|
||||
|
||||
bool IPanelDevice::lvgl_flush_ready_cb(esp_lcd_panel_io_handle_t,
|
||||
esp_lcd_panel_io_event_data_t *,
|
||||
void *user_ctx)
|
||||
{
|
||||
auto *disp = (lv_display_t *) user_ctx;
|
||||
lv_display_flush_ready(disp);
|
||||
return false;
|
||||
}
|
||||
|
||||
void IPanelDevice::lvgl_flush_cb(lv_display_t *display, const lv_area_t *area,
|
||||
uint8_t *px_map) // NOLINT(*-non-const-parameter)
|
||||
{
|
||||
auto panel_handle =
|
||||
(esp_lcd_panel_handle_t) lv_display_get_user_data(display);
|
||||
|
||||
// Necessary because LVGL reserves 2x4 bytes in the buffer for a palette.
|
||||
// Since we are monochrome, we don't need these additional bytes.
|
||||
// For more information about the monochrome, please refer to:
|
||||
// https://docs.lvgl.io/9.2/porting/display.html#monochrome-displays
|
||||
// Skip the palette here.
|
||||
px_map += LVGL_PALETTE_SIZE;
|
||||
|
||||
uint16_t hor_res = lv_display_get_physical_horizontal_resolution(display);
|
||||
int32_t x1 = area->x1;
|
||||
int32_t x2 = area->x2;
|
||||
int32_t y1 = area->y1;
|
||||
int32_t y2 = area->y2;
|
||||
|
||||
|
||||
// As of 03/01/2025 master branch of LVGL contains this helper for the same.
|
||||
// https://docs.lvgl.io/master/API/draw/sw/lv_draw_sw_utils.html
|
||||
// lv_draw_sw_i1_convert_to_vtiled()
|
||||
for (int32_t y = y1; y <= y2; y++) {
|
||||
for (int32_t x = x1; x <= x2; x++) {
|
||||
// Get the byte offset of the pixel coordinates using horizontal-mapping.
|
||||
int h_offset = Pixel::horizontal_byte_offset(x, y, hor_res);
|
||||
// True if the pixel is lit, else false.
|
||||
bool chroma_color = px_map[h_offset] & Pixel::msb_mask(x);
|
||||
|
||||
// We need an additional buffer for transposing the pixel data to the
|
||||
// vertical format required by the display driver.
|
||||
uint8_t *buf = IPanelDevice::get_additional_draw_buffer();
|
||||
// Move to the position in the auxillary buffer where the pixel is stored.
|
||||
buf += Pixel::vertical_byte_offset(x, y, hor_res);
|
||||
|
||||
// Write the single bit to the monochrome display mapped vertically.
|
||||
// Take the Least Significant Bit mask of the Y coordinate to select the
|
||||
// bit representing a pixel at position y in a vertically-mapped display.
|
||||
if (chroma_color) {
|
||||
// Set the vertically-mapped pixel to on.
|
||||
*buf &= ~Pixel::lsb_mask(y);
|
||||
} else {
|
||||
// Set the vertically-mapped pixel to off.
|
||||
*buf |= Pixel::lsb_mask(y);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Pass the draw buffer to the driver.
|
||||
ESP_ERROR_CHECK(
|
||||
esp_lcd_panel_draw_bitmap(panel_handle, x1, y1, x2 + 1, y2 + 1,
|
||||
IPanelDevice::get_additional_draw_buffer()));
|
||||
}
|
||||
|
||||
void IPanelDevice::lvgl_increase_tick_cb(void *)
|
||||
{
|
||||
// Tell LVGL how many milliseconds has elapsed
|
||||
lv_tick_inc(LVGL_TICK_PERIOD_MS);
|
||||
}
|
||||
|
||||
[[noreturn]] void IPanelDevice::lvgl_port_task(void *)
|
||||
{
|
||||
// Optionally initialize some LVGL objects here before entering loop below.
|
||||
|
||||
ESP_LOGI(TAG, "Starting LVGL task");
|
||||
for (uint32_t time_to_next_ms = 0; true; usleep(1000 * time_to_next_ms)) {
|
||||
// Obtain LVGL API lock before calling any LVGL methods.
|
||||
ScopedLock lock;
|
||||
|
||||
// Optionally handle LVGL input or event logic here.
|
||||
|
||||
// Update LVGL periodic timers.
|
||||
time_to_next_ms = lv_timer_handler();
|
||||
}
|
||||
}
|
||||
|
||||
void IPanelDevice::register_rendering_data(lv_display_t *display_handle,
|
||||
esp_lcd_panel_io_handle_t io_handle)
|
||||
{
|
||||
// Create draw buffer.
|
||||
ESP_LOGI(TAG, "Allocate separate LVGL draw buffers");
|
||||
lv_buf_ = heap_caps_calloc(1, lv_buf_size_,
|
||||
MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
|
||||
assert(lv_buf_);
|
||||
|
||||
ESP_LOGI(TAG, "Set LVGL draw buffers");
|
||||
// Color format must be set first, LVGL9 suooprt new monochromatic format.
|
||||
lv_display_set_color_format(display_handle, LV_COLOR_FORMAT_I1);
|
||||
lv_display_set_buffers(display_handle, lv_buf_, nullptr,
|
||||
lv_buf_size_,
|
||||
LV_DISPLAY_RENDER_MODE_FULL);
|
||||
lv_display_set_rotation(display_handle, LV_DISPLAY_ROTATION_0);
|
||||
|
||||
ESP_LOGI(TAG, "Set LVGL callback for flushing to the display");
|
||||
lv_display_set_flush_cb(display_handle, IPanelDevice::lvgl_flush_cb);
|
||||
|
||||
ESP_LOGI(TAG, "Register io panel callback for LVGL flush ready notification");
|
||||
const esp_lcd_panel_io_callbacks_t cbs = {
|
||||
.on_color_trans_done = IPanelDevice::lvgl_flush_ready_cb,
|
||||
};
|
||||
ESP_ERROR_CHECK(
|
||||
esp_lcd_panel_io_register_event_callbacks(io_handle, &cbs,
|
||||
display_handle));
|
||||
}
|
||||
|
||||
void IPanelDevice::register_lvgl_tick_timer()
|
||||
{
|
||||
ESP_LOGI(TAG, "Use esp_timer to increase LVGL tick");
|
||||
const esp_timer_create_args_t esp_timer_args = {
|
||||
.callback = &IPanelDevice::lvgl_increase_tick_cb,
|
||||
// Data to pass to the IPanelDevice::lvgl_port_task callback.
|
||||
.arg = nullptr,
|
||||
.name = "lvgl_tick",
|
||||
};
|
||||
Display::timers_.start_new_timer_periodic(esp_timer_args,
|
||||
LVGL_TICK_PERIOD_MS * 1000);
|
||||
|
||||
// LVGL requires a FreeRTOS task for running it's event loop.
|
||||
// The lvgl_port_task callback can update the UI or handle input logic.
|
||||
// For this basic example we don't do either of these things.
|
||||
ESP_LOGI(TAG, "Create LVGL FreeRTOS task");
|
||||
// Optionally set user data to pass to LVGL's FreeRTOS task callback here.
|
||||
void *user_data = nullptr;
|
||||
xTaskCreate(lvgl_port_task, "LVGL", LVGL_TASK_STACK_SIZE,
|
||||
user_data, LVGL_TASK_PRIORITY, nullptr);
|
||||
}
|
@ -1,435 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef PANEL_DEVICE_H
|
||||
#define PANEL_DEVICE_H
|
||||
|
||||
#include <esp_lcd_panel_dev.h>
|
||||
#include <esp_lcd_panel_ops.h>
|
||||
#include <esp_lcd_panel_io.h>
|
||||
#include <esp_log.h>
|
||||
|
||||
#include <display/lv_display.h>
|
||||
|
||||
#include "i2c.h"
|
||||
|
||||
// LVGL reserves 2x4 bytes in the buffer to be used as a palette.
|
||||
// This additional space must be added to the IPanelDevice::buf_size_.
|
||||
#define LVGL_PALETTE_SIZE 8
|
||||
#define LVGL_TICK_PERIOD_MS 5
|
||||
#define LVGL_TASK_STACK_SIZE (4 * 1024)
|
||||
#define LVGL_TASK_PRIORITY 2
|
||||
|
||||
#define LCD_H_RES 128
|
||||
#define LCD_V_RES 64
|
||||
|
||||
/**
|
||||
* Wraps some foundational operations performed on pixel coordinates when
|
||||
* dealing with pointer arithmetic. Most of these could be done ad-hoc as needed
|
||||
* but using this helper reduces the risk of errors.
|
||||
*/
|
||||
struct Pixel {
|
||||
/**
|
||||
* Calculate byte offset for the pixel at [x,y] within a horizontally-mapped
|
||||
* monochrome uint8 draw buffer, using the initialized horizontal resolution.
|
||||
*
|
||||
* We use `>> 3` because each pixel requires 1 bit, but each uint8 in the draw
|
||||
* buffer can hold 8 bits. To find the uint8 value in our draw buffer that
|
||||
* stores this pixel's value we must compensate for this when using pixel
|
||||
* coordinates in byte math.
|
||||
*
|
||||
* Therefore, each uint8 in the draw buffer stores the state of 8 pixels.
|
||||
* Below is an example of calculating for [x, y] pixel coordinates [20, 10].
|
||||
* The example uses a horizontal resolution of 128.
|
||||
*
|
||||
* For the horizontal case, each row (y) of the image is represented by
|
||||
* `hor_res >> 3` bytes (16). The byte-offset of the first pixel in the 10th
|
||||
* row for example is `16 * 10` = 160.
|
||||
*
|
||||
* Since the pixels are stored horizontally we must calculate the 20th pixel
|
||||
* column (x) as `160 + (20 >> 3)`, or `160 + (20 / 8)` to get a final offset
|
||||
* of 162.
|
||||
*
|
||||
* @param x X pixel coordinate to find byte offset.
|
||||
* @param y Y pixel coordinate to find byte offset.
|
||||
* @param hor_res horizontal resolution of the display.
|
||||
* @return byte offset for a single-byte monochrome pixel at [x,y].
|
||||
*/
|
||||
[[maybe_unused]] [[nodiscard]] static ptrdiff_t
|
||||
horizontal_byte_offset(const int32_t &x, const int32_t &y,
|
||||
const int32_t &hor_res = LCD_V_RES)
|
||||
{
|
||||
// Convert pixel (bit) coordinates to byte coordinates in the draw buffer.
|
||||
return (hor_res >> 3) * y + (x >> 3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Calculate byte offset for the pixel at [x,y] within a vertically-mapped
|
||||
* monochrome uint8 draw buffer, using the initialized horizontal resolution.
|
||||
*
|
||||
* We use `>> 3` because each pixel requires 1 bit, but each uint8 in the draw
|
||||
* buffer can hold 8 bits. To find the uint8 value in our draw buffer that
|
||||
* stores this pixel's value we must compensate for this when using pixel
|
||||
* coordinates in byte math.
|
||||
*
|
||||
* Therefore, each uint8 in the draw buffer stores the state of 8 pixels.
|
||||
* Below is an example of calculating for [x, y] pixel coordinates [20, 10].
|
||||
* The example uses a horizontal resolution of 128.
|
||||
*
|
||||
* For the vertical case, each row (y) of the image is represented by
|
||||
* `hor_res` bytes (128) - one for each column (x). Because the pixels are
|
||||
* stored vertically, the byte-offset of the first pixel in the 10th row is
|
||||
* `128 * (10 >> 3)` or * `128 * (10 / 8)` = 128.
|
||||
*
|
||||
* From this location we can simply calculate the 20th pixel column (x) as
|
||||
* `128 + 20` to get a final offset of 148, because the pixels are stored in a
|
||||
* columnar format.
|
||||
*
|
||||
* @param x X pixel coordinate to find byte offset.
|
||||
* @param y Y pixel coordinate to find byte offset.
|
||||
* @param hor_res horizontal resolution of the display.
|
||||
* @return byte offset for a single-byte monochrome pixel at [x,y].
|
||||
*/
|
||||
[[maybe_unused]] [[nodiscard]] static ptrdiff_t
|
||||
vertical_byte_offset(const int32_t &x, const int32_t &y,
|
||||
const int32_t &hor_res = LCD_V_RES)
|
||||
{
|
||||
// Convert pixel (bit) coordinates to byte coordinates in the draw buffer.
|
||||
return hor_res * (y >> 3) + x;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the Most Significant Bit location of bit `i` in a byte.
|
||||
*
|
||||
* MSB LSB
|
||||
* bits 7 6 5 4 3 2 1 0
|
||||
* data 8 7 6 5 4 3 2 1
|
||||
* Left Right
|
||||
*
|
||||
* @return bitmask for MSB location of `i`.
|
||||
*/
|
||||
[[maybe_unused]] [[nodiscard]] static uint8_t
|
||||
msb_mask(const int32_t &i) { return 1 << (7 - i % 8); }
|
||||
|
||||
/**
|
||||
* Finds the Least Significant Bit location of bit `i` in a byte.
|
||||
*
|
||||
* LSB MSB
|
||||
* bits 0 1 2 3 4 5 6 7
|
||||
* data 1 2 3 4 5 6 7 8
|
||||
* Left Right
|
||||
*
|
||||
* @return bitmask for LSB location of `i`.
|
||||
*/
|
||||
[[maybe_unused]] [[nodiscard]] static uint8_t
|
||||
lsb_mask(const int32_t &i) { return 1 << (i % 8); }
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Encapsulates vendor specific ESP LCD panel initialization logic.
|
||||
* This pure virtual interface can be inherited from for using new LCD devices.
|
||||
* See SSD1306 as an example to implement IPanelDevice for NT35510 or ST7789.
|
||||
*
|
||||
* At this time only I2C is supported.
|
||||
* Classes that inherit from this interface should likely be marked final.
|
||||
*/
|
||||
class IPanelDevice {
|
||||
public:
|
||||
/**
|
||||
* Construct an IPanelDevice.
|
||||
*
|
||||
* @param i2c I2C object. Eventually this will mature to IProtocol or similar.
|
||||
* @param config I2C configuration for this device.
|
||||
* @param height Height of the device screen in pixels.
|
||||
* @param width Width of the device screen in pixels.
|
||||
*/
|
||||
explicit IPanelDevice(I2C &i2c,
|
||||
esp_lcd_panel_io_i2c_config_t config,
|
||||
int width,
|
||||
int height) :
|
||||
IPanelDevice(i2c, config, width, height,
|
||||
width * height / 8 + LVGL_PALETTE_SIZE) { }
|
||||
|
||||
/**
|
||||
* Construct an IPanelDevice.
|
||||
*
|
||||
* @param i2c I2C object. Eventually this will mature to IProtocol or similar.
|
||||
* @param config I2C configuration for this device.
|
||||
* @param height Height of the device screen in pixels.
|
||||
* @param width Width of the device screen in pixels.
|
||||
* @param draw_buf_size Size of the draw buffer for this device.
|
||||
*/
|
||||
explicit IPanelDevice(I2C &i2c,
|
||||
esp_lcd_panel_io_i2c_config_t io_config,
|
||||
int width,
|
||||
int height,
|
||||
size_t draw_buf_size) :
|
||||
width_(width),
|
||||
height_(height),
|
||||
rst_num_(i2c.rst_num_),
|
||||
lv_buf_size_(draw_buf_size),
|
||||
esp_io_config_(io_config),
|
||||
lv_buf_(nullptr) { }
|
||||
|
||||
virtual ~IPanelDevice() = default;
|
||||
|
||||
//
|
||||
// PUBLIC METHODS
|
||||
|
||||
/**
|
||||
* Create an LVGL display using the width and height of this device.
|
||||
*
|
||||
* @return Handle to the created LVGL display.
|
||||
*/
|
||||
[[nodiscard]] lv_display_t *create_display() const
|
||||
{
|
||||
auto display = lv_display_create(width_, height_);
|
||||
assert(display);
|
||||
return display;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an ESP LCD panel IO handle.
|
||||
*
|
||||
* @return The created ESP LCD panel IO handle.
|
||||
*/
|
||||
[[nodiscard]] esp_lcd_panel_io_handle_t create_io_handle()
|
||||
{
|
||||
ESP_LOGI(TAG, "Creating panel IO handle");
|
||||
esp_lcd_panel_io_handle_t handle = nullptr;
|
||||
ESP_ERROR_CHECK(
|
||||
esp_lcd_new_panel_io_i2c(I2C::get(), &esp_io_config_, &handle));
|
||||
return handle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create and initialize an ESP panel handle.
|
||||
* IPanelDevice implementors must initialize the panel within init_panel.
|
||||
*
|
||||
* @param config ESP LCD panel configuration.
|
||||
* @param io ESP LCD panel IO handle.
|
||||
* @param [out] panel ESP LCD panel handle output pointer location.
|
||||
*/
|
||||
void create_panel(esp_lcd_panel_dev_config_t &config,
|
||||
esp_lcd_panel_io_handle_t io,
|
||||
esp_lcd_panel_handle_t &panel)
|
||||
{
|
||||
// If the passed handle is already allocated, delete it.
|
||||
if (panel != nullptr) {
|
||||
ESP_LOGI(TAG, "Removing unused panel");
|
||||
esp_lcd_panel_del(panel);
|
||||
}
|
||||
|
||||
ESP_LOGI(TAG, "Installing vendor panel driver");
|
||||
// Call pure virtual method responsible for initializing the panel handle.
|
||||
init_panel(config, io, panel);
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the device specific vendor configuration structure.
|
||||
*
|
||||
* @return Address of vendor configuration structure.
|
||||
* @sa SSD1306::vendor_config
|
||||
*/
|
||||
virtual void *vendor_config() = 0;
|
||||
|
||||
/**
|
||||
* Registers LVGL draw buffers and callbacks for this display.
|
||||
*
|
||||
* An implementation of the interface can optionally override this method to
|
||||
* provide custom LVGL callbacks and display configurations.
|
||||
*
|
||||
* @param display_handle LVGL display handle to use for rendering.
|
||||
* @param io_handle IO handle for the ESP LCD panel.
|
||||
*/
|
||||
virtual void register_rendering_data(lv_display_t *display_handle,
|
||||
esp_lcd_panel_io_handle_t io_handle);
|
||||
|
||||
/**
|
||||
* Registers LVGL ticker timer callback for rendering this display.
|
||||
*
|
||||
* An implementation of the interface can optionally override this method to
|
||||
* provide custom LVGL callbacks and tick configurations.
|
||||
*/
|
||||
virtual void register_lvgl_tick_timer();
|
||||
|
||||
//
|
||||
// PUBLIC MEMBERS
|
||||
|
||||
/// Width of the device screen in pixels.
|
||||
int32_t width_;
|
||||
|
||||
/// Height of the device screen in pixels.
|
||||
int32_t height_;
|
||||
|
||||
/// RST GPIO pin number.
|
||||
int rst_num_;
|
||||
|
||||
/// LVGL draw buffer size for the device.
|
||||
size_t lv_buf_size_;
|
||||
|
||||
/// ESP LCD panel IO configuration.
|
||||
esp_lcd_panel_io_i2c_config_t esp_io_config_;
|
||||
|
||||
protected:
|
||||
/**
|
||||
* Static accessor to a static buffer to store draw buffer data for the panel.
|
||||
*
|
||||
* This method is protected to allow an implementation to provide a custom
|
||||
* callback method similar to IPanelDevice::lvgl_flush_cb.
|
||||
*
|
||||
* The buffer is allocated statically within the scope of this function to
|
||||
* allow creating multiple panels that _each_ manage their own statically
|
||||
* allocated draw buffer data. This simplifies implementing the interface by
|
||||
* taking this responsibility off of the implementor. The buffer will only be
|
||||
* allocated if this method is called, so the memory is only used if required.
|
||||
*
|
||||
* @return Pointer to uint8 draw buffer data.
|
||||
* @sa register_rendering_data for overriding LVGL rendering callbacks.
|
||||
*/
|
||||
static uint8_t *get_additional_draw_buffer()
|
||||
{
|
||||
// Static to the scope of this function, not the compilation unit.
|
||||
// For LV_COLOR_FORMAT_I1 we need an extra buffer to hold converted data.
|
||||
static uint8_t oled_buffer[LCD_H_RES * LCD_V_RES / 8];
|
||||
return oled_buffer;
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE METHODS
|
||||
|
||||
/**
|
||||
* Initializes the ESP panel using vendor specific APIs and configurations.
|
||||
* This method should implement any setup logic specific to the device.
|
||||
*
|
||||
* @param config ESP LCD panel configuration.
|
||||
* @param io ESP LCD panel IO handle.
|
||||
* @param [out] panel ESP LCD panel handle output pointer location.
|
||||
*/
|
||||
virtual void init_panel(esp_lcd_panel_dev_config_t &config,
|
||||
esp_lcd_panel_io_handle_t io,
|
||||
esp_lcd_panel_handle_t &panel) = 0;
|
||||
|
||||
//
|
||||
// PRIVATE STATIC METHODS
|
||||
|
||||
/**
|
||||
* The callback invoked when panel IO finishes transferring color data.
|
||||
* This signals that the panel is ready to flush image data to the display.
|
||||
*
|
||||
* @param panel LCD panel IO handles.
|
||||
* @param data Panel IO event data, fed by driver.
|
||||
* @param user_ctx User data, passed from `esp_lcd_panel_io_xxx_config_t`.
|
||||
* @return Whether a high priority task has been waken up by this function.
|
||||
* @sa SSD1306::SSD1306 for setting user_ctx data passed to the callback.
|
||||
* @sa register_rendering_data for overriding this callback.
|
||||
*/
|
||||
static bool lvgl_flush_ready_cb(esp_lcd_panel_io_handle_t panel,
|
||||
esp_lcd_panel_io_event_data_t *data,
|
||||
void *user_ctx);
|
||||
|
||||
/**
|
||||
* The callback invoked for flushing the rendered image to the display.
|
||||
*
|
||||
* `px_map` contains the rendered image as raw pixel map and it should be
|
||||
* copied to `area` on the display.
|
||||
*
|
||||
* The following details are crucial for understanding the logic surrounding
|
||||
* flushing to the display in this example.
|
||||
*
|
||||
* The order of bits within the px_map from _LVGL_ is MSB first.
|
||||
* MSB LSB
|
||||
* bits 7 6 5 4 3 2 1 0
|
||||
* pixels 0 1 2 3 4 5 6 7
|
||||
* Left Right
|
||||
*
|
||||
* The bytes from _LVGL_ are mapped to pixel rows of the display
|
||||
* 8 bits (pixels) per byte -
|
||||
* [0, 0, 0, 0, 0, 0, 0, 0]
|
||||
* [0, 0, 0, 0, 0, 0, 0, 0]
|
||||
* [0, 0, 0, 0, 0, 0, 0, 0]
|
||||
*
|
||||
* The order of bits expected by the _display driver_ is LSB first.
|
||||
* We must preserve pairing of each bit and pixel when writing to the display.
|
||||
* LSB MSB
|
||||
* bits 0 1 2 3 4 5 6 7
|
||||
* pixels 7 6 5 4 3 2 1 0
|
||||
* Left Right
|
||||
*
|
||||
* Bytes expected by the _display driver_ map to pixel columns of the display.
|
||||
* 8 bits (pixels) per byte -
|
||||
* [0, [0, [0, [0,
|
||||
* 0, 0, 0, 0,
|
||||
* 0, 0, 0, 0,
|
||||
* 0, 0, 0, 0,
|
||||
* 0, 0, 0, 0,
|
||||
* 0, 0, 0, 0,
|
||||
* 0, 0, 0, 0,
|
||||
* 0] 0] 0] 0]
|
||||
*
|
||||
* These layouts in memory have no opinion on the shape of the image. The
|
||||
* beginning and end of a row or a column for example is entirely dependent
|
||||
* on how the data is accessed. The vertical and horitzontal resolution may
|
||||
* vary between displays.
|
||||
*
|
||||
* For the LV_COLOR_FORMAT_I1 color format we are using, an additional buffer
|
||||
* is needed for transposing the bits to the vertical arrangement required by
|
||||
* the display driver that is outlined above.
|
||||
*
|
||||
* This callback implementation is an example of handling this transposition
|
||||
* and flushing the data to the display in the expected format.
|
||||
*
|
||||
* @param display LVGL display handle to use for rendering.
|
||||
* @param area Area of the display being flushed.
|
||||
* @param px_map Rendered image data for writing to the display area.
|
||||
* @sa register_rendering_data for overriding this callback.
|
||||
* @sa get_additional_draw_buffer
|
||||
*/
|
||||
static void lvgl_flush_cb(lv_display_t *display,
|
||||
const lv_area_t *area,
|
||||
uint8_t *px_map);
|
||||
|
||||
/**
|
||||
* Callback invoked for every period of the timer.
|
||||
*
|
||||
* This callback _must_ call lv_tick_inc to inform LVGL how much time has
|
||||
* elapsed since the last period of the timer.
|
||||
*
|
||||
* @param data User data passed to the callback.
|
||||
* @sa register_lvgl_tick_timer for setting user data and the tick period of
|
||||
* the timer, or overriding this callback entirely.
|
||||
*/
|
||||
static void lvgl_increase_tick_cb(void *data);
|
||||
|
||||
/**
|
||||
* FreeRTOS task callback invoked for handling LVGL events or updating the UI.
|
||||
*
|
||||
* This function is intentionally an endless loop and should never return.
|
||||
* LVGL initialization logic can optionally be added before entering the loop.
|
||||
* Input logic can optionally be handled within the loop.
|
||||
*
|
||||
* This callback _must_ call lv_timer_handler to handle LVGL periodic timers.
|
||||
*
|
||||
* @param data User data passed to the callback.
|
||||
* @sa register_lvgl_tick_timer for overriding this callback.
|
||||
*/
|
||||
[[noreturn]] static void lvgl_port_task(void *data);
|
||||
|
||||
//
|
||||
// PRIVATE MEMBERS
|
||||
|
||||
/// LVGL draw buffer associated with this Display's lv_display_t.
|
||||
void *lv_buf_;
|
||||
|
||||
/// Tag used for ESP logging.
|
||||
constexpr static const char *TAG = "IPanelDevice";
|
||||
};
|
||||
|
||||
#endif // PANEL_DEVICE_H
|
@ -1,12 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#include "scoped_lock.h"
|
||||
|
||||
// LVGL library is not thread-safe, this example calls LVGL APIs from tasks.
|
||||
// We must use a mutex to protect it.
|
||||
_lock_t ScopedLock::lv_lock_;
|
@ -1,28 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef SCOPED_LOCK_H
|
||||
#define SCOPED_LOCK_H
|
||||
|
||||
#include <mutex>
|
||||
|
||||
/**
|
||||
* Obtains LVGL API mutex lock for the duration of local scope.
|
||||
*
|
||||
* LVGL library is not thread-safe, this lock should be held when making calls
|
||||
* to the LVGL API, and released as soon as possible when finished.
|
||||
*/
|
||||
struct ScopedLock {
|
||||
explicit ScopedLock() { _lock_acquire(&lv_lock_); }
|
||||
|
||||
~ScopedLock() { _lock_release(&lv_lock_); }
|
||||
|
||||
/// Mutex used to protect LVGL API calls.
|
||||
static _lock_t lv_lock_;
|
||||
};
|
||||
|
||||
#endif // SCOPED_LOCK_H
|
@ -1,106 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef SSD1306_H
|
||||
#define SSD1306_H
|
||||
|
||||
#include <esp_lcd_panel_ssd1306.h>
|
||||
|
||||
#include "panel_device.h"
|
||||
|
||||
// According to specific display hardware.
|
||||
// https://www.digikey.com/en/products/detail/winstar-display/WEA012864DWPP3N00003/20533255
|
||||
#define SCREEN_WIDTH 128 // OLED display width, in pixels.
|
||||
#define SCREEN_HEIGHT 64 // OLED display height, in pixels.
|
||||
|
||||
// According to SSD1306 datasheet.
|
||||
// https://cdn-shop.adafruit.com/datasheets/SSD1306.pdf
|
||||
#define I2C_HW_ADDR 0x3C
|
||||
#define LCD_PIXEL_CLOCK_HZ (400 * 1000)
|
||||
// Bit number used to represent command and parameter
|
||||
#define LCD_CMD_BITS 8
|
||||
#define LCD_PARAM_BITS 8
|
||||
|
||||
/**
|
||||
* Example of implementing the IPanelDevice interface for SSD1306 LCD device.
|
||||
*/
|
||||
class SSD1306 final : public IPanelDevice {
|
||||
public:
|
||||
/**
|
||||
* Construct a new SSD1306 device.
|
||||
*
|
||||
* @param i2c I2C master bus to manage this device.
|
||||
*/
|
||||
explicit SSD1306(I2C &i2c) :
|
||||
SSD1306(i2c, {.height = SCREEN_HEIGHT}) { }
|
||||
|
||||
/**
|
||||
* Construct a new SSD1306 device given a specific SSD1306 configuration.
|
||||
*
|
||||
* @param i2c I2C master bus to manage this device.
|
||||
* @param config SSD1306 vendor configuration.
|
||||
* @param width Width of the device screen in pixels.
|
||||
* @param height Height of the device screen in pixels.
|
||||
*/
|
||||
SSD1306(I2C &i2c,
|
||||
esp_lcd_panel_ssd1306_config_t config,
|
||||
int width = SCREEN_WIDTH,
|
||||
int height = SCREEN_HEIGHT
|
||||
) :
|
||||
IPanelDevice(i2c,
|
||||
(esp_lcd_panel_io_i2c_config_t) {
|
||||
.dev_addr = I2C_HW_ADDR,
|
||||
// User data to pass to the LVGL flush_ready callback.
|
||||
// See IPanelDevice::lvgl_flush_ready_cb
|
||||
.user_ctx = nullptr,
|
||||
.control_phase_bytes = 1,
|
||||
.dc_bit_offset = 6,
|
||||
.lcd_cmd_bits = LCD_CMD_BITS,
|
||||
.lcd_param_bits = LCD_PARAM_BITS,
|
||||
.scl_speed_hz = LCD_PIXEL_CLOCK_HZ,
|
||||
},
|
||||
width,
|
||||
height
|
||||
),
|
||||
ssd1306_config_(config) { }
|
||||
|
||||
~SSD1306() final = default;
|
||||
|
||||
//
|
||||
// PUBLIC METHODS
|
||||
|
||||
/**
|
||||
* Provides the SSD1306 vendor configuration to IPanelDevice consumers.
|
||||
*
|
||||
* @return Address of the SSD1306 vendor configuration structure.
|
||||
*/
|
||||
void *vendor_config() override
|
||||
{
|
||||
return &ssd1306_config_;
|
||||
}
|
||||
|
||||
//
|
||||
// PUBLIC MEMBERS
|
||||
|
||||
/// SSD1306 configuration structure.
|
||||
esp_lcd_panel_ssd1306_config_t ssd1306_config_;
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE METHODS
|
||||
|
||||
/// Initializes the ESP LCD panel handle for the SSD1306 device.
|
||||
void init_panel(esp_lcd_panel_dev_config_t &config,
|
||||
esp_lcd_panel_io_handle_t io,
|
||||
esp_lcd_panel_handle_t &panel) override
|
||||
{
|
||||
ESP_ERROR_CHECK(esp_lcd_new_panel_ssd1306(io, &config, &panel));
|
||||
}
|
||||
};
|
||||
|
||||
#endif // SSD1306_H
|
@ -1,161 +0,0 @@
|
||||
/*#############################################################################
|
||||
## Author: Shaun Reed ##
|
||||
## Legal: All Content (c) 2025 Shaun Reed, all rights reserved ##
|
||||
## ##
|
||||
## Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
||||
##############################################################################
|
||||
*/
|
||||
#ifndef TIME_KEEPER_H
|
||||
#define TIME_KEEPER_H
|
||||
|
||||
#include <esp_log.h>
|
||||
#include <esp_timer.h>
|
||||
|
||||
#include "i2c.h"
|
||||
|
||||
/**
|
||||
* Stores arguments and ESP timer handle for a Timer.
|
||||
* In general Timers should be used via the TimeKeeper interface only.
|
||||
*
|
||||
* Timers cannot be copied, and are only created by a TimeKeeper instance.
|
||||
* The TimeKeeper can delete existing Timers, calling it's destructor.
|
||||
* The ESP timer will be deleted when this class desctructor is called.
|
||||
*/
|
||||
struct Timer {
|
||||
explicit Timer(esp_timer_create_args_t args) :
|
||||
args_(args), esp_timer_(nullptr)
|
||||
{
|
||||
ESP_LOGI(TAG, "Creating esp_timer with name: '%s'", args_.name);
|
||||
ESP_ERROR_CHECK(esp_timer_create(&args, &esp_timer_));
|
||||
}
|
||||
|
||||
~Timer()
|
||||
{
|
||||
ESP_LOGI(TAG, "Destroying esp_timer with name: '%s'", args_.name);
|
||||
ESP_ERROR_CHECK(esp_timer_delete(esp_timer_));
|
||||
}
|
||||
|
||||
Timer(const Timer &) = delete;
|
||||
|
||||
Timer(Timer &) = delete;
|
||||
|
||||
Timer &operator=(Timer &) = delete;
|
||||
|
||||
//
|
||||
// PUBLIC MEMBERS
|
||||
|
||||
/// Arguments passed to ESP API during timer creation.
|
||||
esp_timer_create_args_t args_;
|
||||
|
||||
/// ESP timer handle.
|
||||
esp_timer_handle_t esp_timer_;
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE MEMBERS
|
||||
|
||||
/// Tag used for ESP logging.
|
||||
constexpr static const char *TAG = "Timer";
|
||||
};
|
||||
|
||||
/**
|
||||
* ESP timer mananger class.
|
||||
*
|
||||
* Timers should only be accessed using the get_handle method.
|
||||
* If the Timer destructor is called the underlying ESP timer will be deleted.
|
||||
*/
|
||||
struct TimeKeeper {
|
||||
/// Timer handle type used for referring to Timers.
|
||||
using TimerHandle = Timer *;
|
||||
|
||||
//
|
||||
// GETTERS
|
||||
|
||||
TimerHandle get_handle(const char *name)
|
||||
{
|
||||
return &managed_timers_.at(name);
|
||||
}
|
||||
|
||||
TimerHandle operator[](const char *name) { return get_handle(name); }
|
||||
|
||||
//
|
||||
// PUBLIC METHODS
|
||||
|
||||
/**
|
||||
* Create a new managed Timer with the provided ESP arguments.
|
||||
* The timer can be retrieved later using the args.name field value.
|
||||
*
|
||||
* @param args ESP timer creation arguments.
|
||||
* @return TimerHandle Handle to a Timer managed by this TimeKeeper.
|
||||
* @sa get_handle
|
||||
* @sa operator[](const char*)
|
||||
*/
|
||||
[[maybe_unused]] TimerHandle create_timer(esp_timer_create_args_t args)
|
||||
{
|
||||
auto rt = managed_timers_.emplace(args.name, args);
|
||||
if (!rt.second) {
|
||||
ESP_LOGE(TAG, "Timer already exists with name '%s'", args.name);
|
||||
return nullptr;
|
||||
}
|
||||
return &rt.first->second;
|
||||
}
|
||||
|
||||
/// Stop a Timer with the given name.
|
||||
[[maybe_unused]] void stop_timer(const char *name)
|
||||
{
|
||||
ESP_ERROR_CHECK(esp_timer_stop(get_handle(name)->esp_timer_));
|
||||
}
|
||||
|
||||
/// Delete a Timer with the given name.
|
||||
[[maybe_unused]] void delete_timer(const char *name)
|
||||
{
|
||||
if (managed_timers_.erase(name) == 0) {
|
||||
ESP_LOGE(TAG, "Attempt to delete timer that does not exist: '%s'", name);
|
||||
}
|
||||
}
|
||||
|
||||
/// Create a Timer with the ESP args and call esp_timer_start_periodic.
|
||||
[[maybe_unused]] void
|
||||
start_new_timer_periodic(esp_timer_create_args_t args,
|
||||
uint64_t period)
|
||||
{
|
||||
start_timer_periodic(create_timer(args)->args_.name, period);
|
||||
}
|
||||
|
||||
/// Calls esp_timer_start_periodic on the Timer with the given name.
|
||||
[[maybe_unused]] void start_timer_periodic(const char *name,
|
||||
uint64_t period)
|
||||
{
|
||||
ESP_ERROR_CHECK(
|
||||
esp_timer_start_periodic(get_handle(name)->esp_timer_, period));
|
||||
}
|
||||
|
||||
/// Create a Timer with the ESP args and call esp_timer_start_once.
|
||||
[[maybe_unused]] void start_new_timer_once(esp_timer_create_args_t args,
|
||||
uint64_t timeout_us)
|
||||
{
|
||||
start_timer_once(create_timer(args)->args_.name, timeout_us);
|
||||
}
|
||||
|
||||
/// Calls esp_timer_start_once on the Timer with the given name.
|
||||
[[maybe_unused]] void start_timer_once(const char *name,
|
||||
uint64_t timeout_us)
|
||||
{
|
||||
ESP_ERROR_CHECK(
|
||||
esp_timer_start_once(get_handle(name)->esp_timer_, timeout_us));
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
//
|
||||
// PRIVATE MEMBERS
|
||||
|
||||
/// Existing ESP timers created for this TimeKeeper instance.
|
||||
std::unordered_map<const char *, Timer> managed_timers_;
|
||||
|
||||
/// Tag used for ESP logging.
|
||||
constexpr static const char *TAG = "TimeKeeper";
|
||||
};
|
||||
|
||||
#endif // TIME_KEEPER_H
|
Binary file not shown.
Before Width: | Height: | Size: 227 KiB |
File diff suppressed because it is too large
Load Diff
@ -5,18 +5,18 @@ shaunrd0/klips/esp/
|
||||
├── 01_led-button # Simple LED circuit controlled by an on board button.
|
||||
├── 02_led-button-web # LED controlled by a button or within a web browser.
|
||||
├── 03_temp-humidity-web # Temperature and humidity sensor within a web browser.
|
||||
├── 04_esp-idf-arduino # CMake example instead of Arduino IDE for ESP development.
|
||||
├── 05_temp-humidity-web # Temperature and humidity sensor within a web browser.
|
||||
├── 06_i2c-scanner # Simple I2C device scanner.
|
||||
├── 07_lcd-panel-i2c # Drawing to a LCD display with LVGL over I2C.
|
||||
├── ESP32-basic-starter-kit.pdf # PDF for tutorials in ESP32 starter kit.
|
||||
├── ESP32-dev-module.png
|
||||
└── README.md
|
||||
```
|
||||
|
||||
Examples 1-3 are built using the Arduino IDE.
|
||||
This directory contains ESP32 projects largely adapted from the examples in [ESP32-basic-starter-kit.pdf](./ESP32-basic-starter-kit.pdf).
|
||||
|
||||
All examples after `04_esp-idf-arduino` are built with cmake and the [ESP-IDF](https://github.com/espressif/esp-idf).
|
||||
The APIs in the original examples paired with this PDF have changed, and I decided to do some different things with the code and/or circuits, but the original code can be [found here](https://www.dropbox.com/scl/fo/6znlij3eb23ih4jxcpv2w/AKvB1t9CCUgoVRVtGen8Yrw?rlkey=z84anl0hs940qf9fpl7l8q8q2&e=1&dl=0).
|
||||
|
||||
The board selected in [Arduino IDE](https://www.arduino.cc/en/software) is ESP32 Dev Module -
|
||||
|
||||

|
||||
|
||||
[Arduino ESP32 GitHub](https://github.com/espressif/arduino-esp32) \
|
||||
[Arduino ESP32 API reference](https://docs.espressif.com/projects/arduino-esp32/en/latest/libraries.html)
|
||||
[Arduino ESP32 API reference](https://docs.espressif.com/projects/arduino-esp32/en/latest/libraries.html)
|
Loading…
x
Reference in New Issue
Block a user