Grüß euch!
Ich scheitere gerade Famos daran meine ESP32-C3 super mini dev Boards mit einen Tasmota inkl. Max31865 "Treiber" zu flashen.
Was ich bisher versuchte
Einrichten Platformio auf Debian
sudo apt install pipx python3-venv
pipx ensurepath
pipx install platformio
sudo apt install pipx python3-venv
SUDO BEENEDET
pipx install platformio
git clone --depth=1 https://github.com/arendst/Tasmota.git
cd Tasmota
~/Tasmota$ nano user_config_override.h
Inhalt user_config_override.h
#ifndef _USER_CONFIG_OVERRIDE_H_
#define _USER_CONFIG_OVERRIDE_H_
// ***********************************************
// ** Global settings for Tasmota32C3-CDC ********
// Wifi settings, MQTT settings, etc., can be added here
// (Optional: your Wi-Fi SSID and password)
// ***********************************************
// ** Firmware-specific settings *****************
// Enable SPI support for hardware SPI
#define USE_SPI // Hardware SPI using GPIO12(MISO), GPIO13(MOSI), GPIO14(CLK) in addition to two user selectable GPIOs(CS and DC)
// Enable MAX31865 RTD sensor support
#define USE_MAX31865 // Add support for MAX31865 RTD sensors using softSPI
// MAX31865 configuration (example with PT100 sensor settings)
#define MAX31865_PTD_WIRES 3 // PTDs come in several flavors, pick yours. Specific settings per sensor possible with MAX31865_PTD_WIRES1..MAX31865_PTD_WIRES6
#define MAX31865_PTD_RES 100 // Nominal PTD resistance at 0°C (100Ω for a PT100, 1000Ω for a PT1000, YMMV!)
#define MAX31865_REF_RES 430 // Reference resistor (Usually 430Ω for a PT100, 4300Ω for a PT1000)
#define MAX31865_PTD_BIAS 0 // To calibrate your not-so-good PTD. Specific settings per sensor possible with MAX31865_PTD_BIAS1..MAX31865_PTD_BIAS6
//#define WIFI_CONFIG_TOOL WIFI_MANAGER habe ich mit auch schon probiert
#endif // _USER_CONFIG_OVERRIDE_H_
platformio run -e tasmota32c3
Phyisch auf ESP32 boot gedrückt halten und reset kurz drücken
root@debian-hp:/home/user# esptool.py --chip esp32c3 --port /dev/ttyACM0 write_flash 0x1000 /home/user/Tasmota/build_output/firmware/tasmota32c3.bin
=> Es öffnet sich kein AP ich kann den ESP32 nicht weiter einrichten ich habe keine Ahnung was ich übersehe.
Hätte irgendwer freundlicherweise eine Anregung was schief geht?
Ziel wäre es einen PT100 welcher sehr gut verbaut ist auszulesen und zu nutzen.