HASwitchPlate / openHASP

HomeAutomation Switchplate based on lvgl for ESP32
https://www.openhasp.com
MIT License
726 stars 185 forks source link

Unable to build full version 7.0 #731

Closed haaxema closed 5 months ago

haaxema commented 6 months ago

Hi,

I am trying to loclay build V7.0RC12 using VSCode/PIO for my WT32SC01 It works fine, but I only get the OTA bin, not the Full version. As I am trying to upgrade from 6.3 I need the Full bin to do a serial upload.

Any thoughts?

Martin

fvanroie commented 5 months ago

You can download it from https://nightly.openhasp.com/

fvanroie commented 5 months ago

The issue is most likely that you are using Windows and pip is out-of-data or the PySerial library is missing...

If so, you can fix it by running these two commands in order:

C:\Users\<username>\.platformio\python3\python.exe -m ensurepip --upgrade
C:\Users\<username>\.platformio\python3\python.exe -m pip install Pyserial

Make sure to replace <username> with your actual username. That fixed the issue for me.

haaxema commented 5 months ago

@fvanroie thanx for both of the solutions.

fvanroie commented 5 months ago

Is this problem resolved now?