Some questions of micro-espectre #116
|
Hello, First of all, thank you for your contributions to this amazing project. I set up the ESP32-S3 with micro-espectre today, and it is now running normally, the detection effect is great. But, Regarding ESP32-S3 data transmission and multi-ESP32-S3s setup, I have a few questions that I would like to clarify, and I appreciate your help in advance! Can the ESP32-S3 run independently after disconnecting from the PC via the COM port in the micro-espectre project? When I run the command "./me run", the device first connects to a specific COM port. If it could connect to the PC through the router's LAN IP without connecting to the COM port, I believe this would greatly improve flexibility. BR |
Replies: 1 comment 5 replies
|
Hi @Leeeeeeedw! Thank you for testing micro-espectre! At the moment, I use micro-espectre mainly as an R&D/prototyping platform. In my current workflow, the board is typically managed through serial (flash/deploy/run), so this setup is intended for research and experimentation. If you need a fully autonomous sensor (with no serial dependency in normal operation), I recommend the C++ ESPHome version of ESPectre, which is designed for production-style standalone deployments. That said, from a technical perspective, MicroPython autostart is possible by configuring startup scripts ( Regarding multiple-device support:
|
Hi @Leeeeeeedw! Thank you for testing micro-espectre!
At the moment, I use micro-espectre mainly as an R&D/prototyping platform. In my current workflow, the board is typically managed through serial (flash/deploy/run), so this setup is intended for research and experimentation.
If you need a fully autonomous sensor (with no serial dependency in normal operation), I recommend the C++ ESPHome version of ESPectre, which is designed for production-style standalone deployments.
That said, from a technical perspective, MicroPython autostart is possible by configuring startup scripts (
boot.py/main.py), so autonomous boot is feasible in theory: https://docs.micropython.org/en/latest/reference/r…