https://github.com/hackuarium/beemos-esp32
https://github.com/hackuarium/beemos-esp32
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hackuarium/beemos-esp32
- Owner: Hackuarium
- Created: 2021-07-09T16:25:10.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T17:44:50.000Z (over 4 years ago)
- Last Synced: 2025-01-17T00:41:35.077Z (over 1 year ago)
- Language: C++
- Size: 176 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Install platform IO cli
`export PATH=$PATH:~/.platformio/penv/bin`
```cpp
printf("Restarting now.\n");
fflush(stdout);
esp_restart();
```
`IDF_PATH=~/.platformio/packages/framework-espidf/`
You may have to add pyserial:
`sudo pip3 install pyserial`
Read device info:
`python3 $IDF_PATH/components/esptool_py/esptool/esptool.py --port /dev/cu.usbserial-A5XK3RJT flash_id`
Read partition table
`python3 $IDF_PATH/components/esptool_py/esptool/esptool.py --port /dev/cu.usbserial-A5XK3RJT read_flash 0x8000 0xc00 ptable.img`
We can now check the content of the `ptable.img` file
`python3 $IDF_PATH/components/partition_table/gen_esp32part.py ptable.img`
Here is an example of the result:
```bash
# Espressif ESP32 Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs,data,nvs,0x9000,20K,
otadata,data,ota,0xe000,8K,
app0,app,ota_0,0x10000,1280K,
app1,app,ota_1,0x150000,1280K,
spiffs,data,spiffs,0x290000,1472K,
```
## FS
Create a folder at the first level called `data`.
To upload the data
`pio run --target uploadfs`
## Alternative web server
https://github.com/me-no-dev/ESPAsyncWebServer#using-platformio
## Searching libraries
https://platformio.org/lib/search?query=si7021
## OTA
pio run -t upload --upload-port square.local
pio run -t uploadfs --upload-port square.local
## Test webserver
```bash
npm i --global loadtest
loadtest -n 1000 -c 4 http://square.patiny.com/command/A
```
## Setup
Z: Layout model
AA: 0 (RGB), 1 (BRG)
Cubes
I: 1 (one line)
J: 10 (10 groups of 3 leds per line)
## Flame simulation
https://cpldcpu.wordpress.com/2016/01/05/reverse-engineering-a-real-candle/