Page 3 of 6

Re: ESP32 boards

Posted: 15 Jan 2018, 22:55
by Jeff
Hello, thank you for your development :D
I try the upyeasy for amusing on my Wemos ESP32 lolin oled and that work :mrgreen:
If i use a AP wifi open without key, it's ok, on the other hand if i tried an other AP with WPA_PSK, i lost the connexion and i must reset the esp32, an idea :?
I ested the command upyeasy.setwifi with more combination, but error

Code: Select all

>>> upyeasy.setwifi ('IOT','xxxxxxxxxx','','',80)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "upyeasy/__init__.py", line 29, in setwifi
  File "upyeasy/utils.py", line 46, in setwifi
  File "filedb.py", line 73, in update
OSError: [Errno 2] ENOENT
I tested a switch with domoticz, doesn't work, it was fast test.
I you want, i can test a oled plugin :?

Re: ESP32 boards

Posted: 16 Jan 2018, 14:30
by waspie
when attempting to flash using :
esptool.py --port COM9 write_flash --baud 460800 --compress 0x1000 upyeasy_v54_20180113_test_esp32_2048.bin

i get:
esptool write_flash: error: argument <address> <filename>: Must be pairs of an address and the binary filename to write there

any tips?

scratch that, removed the "baud" statement and it flashed. leaving this here in case it's helpful to someone else

Re: ESP32 boards

Posted: 28 Jan 2018, 16:17
by BertB
I hate it when stuff does not work reliably.
I think I followed all the steps in the books.
I have Python36 and pip and ampy and pyserial.
When I start pyton i get the >>> signs
when I enter import serial, again I get >>>

But when I enter esptool.py --port COM6 erase_flash in the shell, I get

Traceback (most recent call last):
File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
import serial
ImportError: No module named serial

What stupid thin am I forgetting?

Oh, by the way, some week ago I got it working.
And I really want to play with upyeasy Beta ....

Re: ESP32 boards

Posted: 28 Jan 2018, 16:26
by LisaM
BertB wrote: 28 Jan 2018, 16:17 I hate it when stuff does not work reliably.
I think I followed all the steps in the books.
I have Python36 and pip and ampy and pyserial.
When I start pyton i get the >>> signs
when I enter import serial, again I get >>>

But when I enter esptool.py --port COM6 erase_flash in the shell, I get

Traceback (most recent call last):
File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
import serial
ImportError: No module named serial

What stupid thin am I forgetting?

Oh, by the way, some week ago I got it working.
And I really want to play with upyeasy Beta ....
Espressif instructions: https://github.com/espressif/esptool
More help on installation of esptool: https://diyprojects.io/esp-easy-flash-f ... y-esp8266/

Re: ESP32 boards

Posted: 28 Jan 2018, 16:46
by BertB
Thanks, but i did that:

Code: Select all

D:\Program Files>cd python\python36

D:\Program Files\Python\Python36>esptool.py --port COM6 erase_flash
Traceback (most recent call last):
  File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
    import serial
ImportError: No module named serial

D:\Program Files\Python\Python36>pip install esptool
Requirement already satisfied: esptool in d:\program files\python\python36\lib\site-packages
Requirement already satisfied: ecdsa in d:\program files\python\python36\lib\site-packages (from esptool)
Requirement already satisfied: pyserial>=2.5 in d:\program files\python\python36\lib\site-packages (from esptool)
Requirement already satisfied: pyaes in d:\program files\python\python36\lib\site-packages (from esptool)

D:\Program Files\Python\Python36>esptool.py --port COM6 flash_id
Traceback (most recent call last):
  File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
    import serial
ImportError: No module named serial

D:\Program Files\Python\Python36>mode

Status for device COM6:
-----------------------
    Baud:            115200
    Parity:          None
    Data Bits:       8
    Stop Bits:       1
    Timeout:         OFF
    XON/XOFF:        OFF
    CTS handshaking: OFF
    DSR handshaking: OFF
    DSR sensitivity: OFF
    DTR circuit:     OFF
    RTS circuit:     OFF

Re: ESP32 boards

Posted: 28 Jan 2018, 16:55
by LisaM
BertB wrote: 28 Jan 2018, 16:46 Thanks, but i did that:

Code: Select all

D:\Program Files>cd python\python36

D:\Program Files\Python\Python36>esptool.py --port COM6 erase_flash
Traceback (most recent call last):
  File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
    import serial
ImportError: No module named serial

D:\Program Files\Python\Python36>pip install esptool
Requirement already satisfied: esptool in d:\program files\python\python36\lib\site-packages
Requirement already satisfied: ecdsa in d:\program files\python\python36\lib\site-packages (from esptool)
Requirement already satisfied: pyserial>=2.5 in d:\program files\python\python36\lib\site-packages (from esptool)
Requirement already satisfied: pyaes in d:\program files\python\python36\lib\site-packages (from esptool)

D:\Program Files\Python\Python36>esptool.py --port COM6 flash_id
Traceback (most recent call last):
  File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
    import serial
ImportError: No module named serial

D:\Program Files\Python\Python36>mode

Status for device COM6:
-----------------------
    Baud:            115200
    Parity:          None
    Data Bits:       8
    Stop Bits:       1
    Timeout:         OFF
    XON/XOFF:        OFF
    CTS handshaking: OFF
    DSR handshaking: OFF
    DSR sensitivity: OFF
    DTR circuit:     OFF
    RTS circuit:     OFF
Path set correctly?:

Code: Select all

Python -V
Esptool version?:

Code: Select all

esptool.py -h
Re-installing?:

Code: Select all

pip uninstall esptool
pip install esptool

Re: ESP32 boards

Posted: 28 Jan 2018, 17:41
by BertB
LisaM wrote: 28 Jan 2018, 16:55 Path set correctly?:
I can start python from everywhere on the pc
after issuing Path, I get a lot of stuff, including:
D:\Program Files\Python\Python36\Scripts;D:\Program Files\Python\Python36

Code: Select all

Python -V
C:\Users\berbe>python -V
Python 3.6.2
Esptool version?:

Code: Select all

esptool.py -h
D:\Tools\uPython>esptool.py -h
Traceback (most recent call last):
File "D:\Program Files\Python\Python36\esptool.py", line 34, in <module>
import serial
ImportError: No module named serial
Re-installing?:

Code: Select all

pip uninstall esptool
pip install esptool
Does not seem to help at all ...

But when I first start python and then import serial:
D:\Tools\uPython>python
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:57:36) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import serial
>>>

Re: ESP32 boards

Posted: 28 Jan 2018, 18:46
by BertB
Solved it ... I got one esptool.py to many ...
:oops: :mrgreen:

Re: ESP32 boards

Posted: 28 Jan 2018, 18:48
by LisaM
BertB wrote: 28 Jan 2018, 18:46 Solved it ... I got one esptool.py to many ...
:oops: :mrgreen:
:D Cool! Next step...

Re: ESP32 boards

Posted: 28 Jan 2018, 18:53
by BertB
yeah ... growing up hurts ...
But, I had a esptool in the directory of Python36.
And one in Lib/site-packages.

When I run esptool from site-packages, there is no nagging about serial.
So, I removed esptool from the home directory of Python.

Now I have the following:
D:\Program Files\Python\Python36>esptool.py --port COM6 erase_flash
'esptool.py' is not recognized as an internal or external command,
operable program or batch file.

So, that was the wrong de-fuse wire :-)
In site-packages is also the serial directory.


So, where do I put all this stuff?

Re: ESP32 boards

Posted: 28 Jan 2018, 19:57
by LisaM
BertB wrote: 28 Jan 2018, 18:53 yeah ... growing up hurts ...
But, I had a esptool in the directory of Python36.
And one in Lib/site-packages.

When I run esptool from site-packages, there is no nagging about serial.
So, I removed esptool from the home directory of Python.

Now I have the following:
D:\Program Files\Python\Python36>esptool.py --port COM6 erase_flash
'esptool.py' is not recognized as an internal or external command,
operable program or batch file.

So, that was the wrong de-fuse wire :-)
In site-packages is also the serial directory.


So, where do I put all this stuff?
In powershell:

Code: Select all

esptool.py.exe
List all vars:

Code: Select all

ls Env:

Re: ESP32 boards

Posted: 31 Jan 2018, 15:32
by micropet
Hi Lisa,

great work.

I installed the beta yesterday on an ESP-32 Dev board
It works, only the performance of the webinterface is not as good as in your videos.

Many of us would like to participate in the event in a timely manner.

Is it possible to provide Nightly Build?
Can you tell us how to compile the source code from Github?
How do you access the file system of the ESP? For example, to exchange .py files.

Many greetings Peter

Re: ESP32 boards

Posted: 31 Jan 2018, 16:08
by LisaM
micropet wrote: 31 Jan 2018, 15:32 Hi Lisa,

great work.

I installed the beta yesterday on an ESP-32 Dev board
It works, only the performance of the webinterface is not as good as in your videos.

Many of us would like to participate in the event in a timely manner.

Is it possible to provide Nightly Build?
Can you tell us how to compile the source code from Github?
How do you access the file system of the ESP? For example, to exchange .py files.

Many greetings Peter
Hi Peter,

I'm busy writing the build doc's but will take one or two weeks to complete. Nightly build is on the todo list also.
Here is a guide how to upload files: https://techtutorialsx.com/2017/06/04/e ... le-system/

Re: ESP32 boards

Posted: 31 Jan 2018, 19:06
by micropet
Thank you Lisa,

I am looking forward to it.

I know Ampy, that's really primitive. I thought you had a more comfortable method.
Something like mounting the file system as a drive.

Greetings Peter

Re: ESP32 boards

Posted: 31 Jan 2018, 22:15
by LisaM
micropet wrote: 31 Jan 2018, 19:06 Thank you Lisa,

I am looking forward to it.

I know Ampy, that's really primitive. I thought you had a more comfortable method.
Something like mounting the file system as a drive.

Greetings Peter
The ESP32 design doesn't allow it, the STM32's all have an usb driver that mimics the flash drive as an usb drive.
You can use ampy (or rshell/mpfshell) and the file commander in uPyEasy tool menu and that's it.
Anything more would take a lot of my time and i'm waisting it on other more important stuff... ;)

Re: ESP32 boards

Posted: 01 Feb 2018, 07:03
by micropet
ok I understand.

But the STM32 has no WIFI and therefore no mqtt integration.
This probably makes the ESP32 most suitable.

Re: ESP32 boards

Posted: 01 Feb 2018, 07:08
by budman1758
micropet wrote: 01 Feb 2018, 07:03 ok I understand.

But the STM32 has no WIFI and therefore no mqtt integration.
This probably makes the ESP32 most suitable.
viewtopic.php?f=22&t=3905
Probably better than Wifi. 8-)

Re: ESP32 boards

Posted: 01 Feb 2018, 10:06
by micropet
Thank you - already ordered.

WIFI has the advantage for me that I can just put my sensors where I have a 5V power supply.

Re: ESP32 boards

Posted: 01 Feb 2018, 16:14
by budman1758
I use those ethernet boards with a Raspberry PI Zero and POE for my homemade security cameras. I send 12 volts to it and use a DC stepdown at the camera. That way the wireless isn't overloaded. Plus, you need power for it anyway so POE makes sense.

Re: ESP32 boards

Posted: 01 Feb 2018, 18:36
by LisaM
budman1758 wrote: 01 Feb 2018, 07:08
micropet wrote: 01 Feb 2018, 07:03 ok I understand.

But the STM32 has no WIFI and therefore no mqtt integration.
This probably makes the ESP32 most suitable.
viewtopic.php?f=22&t=3905
Probably better than Wifi. 8-)
And now you know where the fast uPyEasy demo came from... Wifi is always slow, 100MB or 1GB ethernet is preferable always! I have my house wired with 40 ethernet connections, together with a 1GB switch it's faster then any wifi ever will be. My gate is 30M from my house, wifi was always unreliable there. Since i have it connected to ethernet, it never failed again. ;)

Re: ESP32 boards

Posted: 01 Feb 2018, 21:59
by micropet
I have about 50 devices here, all connected via WIFI.
None of it is completely reliable. Some run a few weeks, some a few months. Suddenly a device stops sending because it is no longer on the network.

I will test the solution over LAN.

Is the STM32F405RGT6 and the W5500 ethernet card recommended?

The STM32F405RGT6 has little memory.

Or are there better solutions?

Greetings Peter

Re: ESP32 boards

Posted: 01 Feb 2018, 22:38
by TD-er
Have these 'stalled' devices been up like 49.7 days?
If so. please test with one of the last builds for ESPeasy.
I've added some patches to prevent such crashes.

Re: ESP32 boards

Posted: 02 Feb 2018, 06:46
by micropet
Yes, they are always on.

It is the latest version from the Git. I always flash about 5 devices with the current version.
They have stayed in the network so far. I would have to watch it longer.

One Device with BME280 VEML6040 MH-Z19 TVoc CSS811 SDS021 loses the CSS811, BME280 and the VEML6040 after a few hours. After a reset, the sensors stay away.

Only switching off and then switching on the supply voltage brings it back to life.

There are 2x 10k terminators on the I2C bus. The device ran before with an ESP-32 always without problems. I have no idea why the I2C bus suddenly stops working.

Re: ESP32 boards

Posted: 02 Feb 2018, 06:59
by micropet
Lisa,

here you can compare the performance of my installation. ESP-210 is the Arduino version, ESP-01 is the Python version. The Python version sometimes hangs for a few seconds.

Greetings Peter

Re: ESP32 boards

Posted: 02 Feb 2018, 12:04
by LisaM
micropet wrote: 02 Feb 2018, 06:59 Lisa,

here you can compare the performance of my installation. ESP-210 is the Arduino version, ESP-01 is the Python version. The Python version sometimes hangs for a few seconds.

Greetings Peter
Peter,

Am i correct to notice that the uPyEasy performance is good, besides the hardware tab?

Cheers,

Lisa

Re: ESP32 boards

Posted: 02 Feb 2018, 12:07
by LisaM
micropet wrote: 01 Feb 2018, 21:59 The STM32F405RGT6 has little memory.
Or are there better solutions?
Yes, the orange/raspberry pi which have it all, loads of memory and ethernet and wifi, however they have a tradeoff in terms of latency. Besides that, i haven't found so far an I2C python library for the pi's which can be used with micropython.

Re: ESP32 boards

Posted: 02 Feb 2018, 12:51
by micropet
Yes Lisa, most of the time the performance is good.
But there is also a break in between, then it takes a little longer.

Re: ESP32 boards

Posted: 02 Feb 2018, 13:01
by micropet
But real python is running on the Pi. :)
Also with I2C.

I had built some devices with sensors and PWM for my LEDs a long time ago.
They also did not run so reliably. Often there were problems with the microSD.
The Card was suddenly unreadable.
With my PI3s I booted over a USB stick, that was little better.

Overall, I was not satisfied.

I think the most important thing in lighting control or in sensor devices is reliability. They should never fail.

Re: ESP32 boards

Posted: 02 Feb 2018, 13:55
by LisaM
micropet wrote: 02 Feb 2018, 13:01 But real python is running on the Pi. :)
Also with I2C.

I had built some devices with sensors and PWM for my LEDs a long time ago.
They also did not run so reliably. Often there were problems with the microSD.
The Card was suddenly unreadable.
With my PI3s I booted over a USB stick, that was little better.

Overall, I was not satisfied.

I think the most important thing in lighting control or in sensor devices is reliability. They should never fail.
The STM32's are build for industrial purposes, expensive but very reliable. That's why they have a very low latency, a ton of sensor inputs en low memory. They run in factories and buildings for decades without hickup. The ESP's are build for consumers, cheap and a lot of memory.

Re: ESP32 boards

Posted: 02 Feb 2018, 17:20
by micropet
So STM boards ...

I just got a PYBv1.1 with STM32F405RG and flashed it with normal MicroPython .

My machine immediately detected an additional drive with boot.py and main.py.
Wow, great.

Can I simply copy the .py files from your github to this drive?
Unfortunately, I have no experience with microPython.


Greetings Peter

Re: ESP32 boards

Posted: 02 Feb 2018, 18:50
by micropet
Lisa,

if I flash the file upyeasy_v020_test_20180128_stm32-pybv3_1024.dfu on the PYBv1.1 the COM port is gone.

I'm flashing on Windows with dfu-util - old 0 -D upyeasy_v020_test_20180128_stm32-pybv3_1024.dfu

If I flash the original MicroPython, the COM port is back.

That's not right or?

Re: ESP32 boards

Posted: 02 Feb 2018, 19:04
by LisaM
micropet wrote: 02 Feb 2018, 17:20 So STM boards ...

I just got a PYBv1.1 with STM32F405RG and flashed it with normal MicroPython .

My machine immediately detected an additional drive with boot.py and main.py.
Wow, great.

Can I simply copy the .py files from your github to this drive?
Unfortunately, I have no experience with microPython.


Greetings Peter
You can't copy the uPyEasy python files over to the STM flash drive, because it ain't big enough. The uPyEasy files are 'frozen', meaning they are part of the firmware. You need to flash the STM again using these instructions: viewtopic.php?f=22&t=3905

Re: ESP32 boards

Posted: 02 Feb 2018, 19:07
by LisaM
micropet wrote: 02 Feb 2018, 18:50 Lisa,

if I flash the file upyeasy_v020_test_20180128_stm32-pybv3_1024.dfu on the PYBv1.1 the COM port is gone.

I'm flashing on Windows with dfu-util - old 0 -D upyeasy_v020_test_20180128_stm32-pybv3_1024.dfu

If I flash the original MicroPython, the COM port is back.

That's not right or?
Did you turn the STM on/off? Did the com port disappear completely or did it change numbers?

Please continue the STM thread in the STM32 topic.

Re: ESP32 boards

Posted: 02 Feb 2018, 19:11
by micropet
The board has been restarted several times.

The Comport remains completely gone.
But an "unknown device" emerges
An error occurred while requesting the USB device descriptor.

If I flash the original Python, Comport is back.

Sorry listen now in STM thread in the STM32 topic

Re: ESP32 boards

Posted: 25 Feb 2018, 21:09
by AndrewJ
Hi Lisa,
I'm sorry to report that I'm having a problem with Beta version v.0.2.1. on ESP32 boards :(
I downloaded the binary from the releases page, and installed it per the instructions in post 1 (I tried with and without an erase first). it's getting into a reboot loop when it starts. The log shows

Code: Select all

rst:0x10 (RTCWDT_RTC_RESET),boot:0x3f (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3f400020,len:429240
ets Jun  8 2016 00:22:57
repeated endlessly. This is happening on two different ESP32 boards, one is a Lolin32 Lite, the other a Lolin32 Pro.

I tried it a few times with the same result, then went back to v54 and it works fine.

Am I missing something?

Regards
Andrew.

Re: ESP32 boards

Posted: 26 Feb 2018, 19:06
by CHK_BLN
Hello
I have the same problem.

Look here:

http://www.letscontrolit.com/forum/view ... 869#p24927

Best regards

Re: ESP32 boards

Posted: 26 Feb 2018, 20:44
by AndrewJ
Hello @CHK_BLN,
Thanks for that, it's comforting to know I'm not alone! ;)

Were you able to find any solution?

Best wishes
Andrew

Re: ESP32 boards

Posted: 14 Mar 2018, 14:05
by BertB
I have the same problem with this release.

too dumb to check it

Posted: 14 Mar 2018, 21:53
by karl222
hi,
I am trying to get upyeasy on a esp32. after installing python, first hurdler taken, I had to install pyserial and finally got it done, but it took me some time to get there.

next hurdle: I want to start Firmware install on esp32 by:
esptool.py --port COM4 write_flash --baud 460800 --compress 0x1000 upyeasy_v021_20180218_test_esp32_2048.bin

but I get back:
usage: esptool write_flash [-h] [--flash_freq {keep,40m,26m,20m,80m}]
[--flash_mode {keep,qio,qout,dio,dout}]
[--flash_size FLASH_SIZE]
[--spi-connection SPI_CONNECTION] [--no-progress]
[--verify] [--compress | --no-compress]
<address> <filename> [<address> <filename> ...]
esptool write_flash: error: argument <address> <filename>: Must be pairs of an address and the binary filename to write there

can someone help me to do it right...

lisam: you are doing a really really great Job, many thanks! but can you pleeeease create a routine like for espeasy which is really idiotic-proof... ie. for me :D

many thanks
karl

Re: ESP32 boards

Posted: 14 Mar 2018, 21:59
by karl222
I've got it running by using this string, which I found after searching through the thread:

E:\>esptool.py -p COM4 --baud 115200 write_flash --compress 0x1000 upyeasy_v021_20180218_test_esp32_2048.bin

Re: ESP32 boards

Posted: 17 Mar 2018, 20:07
by karl222
I am getting permanent reboots...
I am using an esp32 wroom module and no wrover, can this be a reason?

Regards
Karl

Re: ESP32 boards

Posted: 18 Mar 2018, 15:46
by LisaM
karl222 wrote: 17 Mar 2018, 20:07 I am getting permanent reboots...
I am using an esp32 wroom module and no wrover, can this be a reason?

Regards
Karl
Can you share your logfile?
Which wroom module?

Re: ESP32 boards

Posted: 18 Mar 2018, 16:11
by BertB
@LisaM

This is all it does:
On the ESP32:
ESP32-WROVER
FCC ID2AC7Z-ESP32WROVER
rst:0x1 (POWERON_RESET),boot:0x3f (SPI_FAST_FLASH_BOOT)
flash read err, 1000
ets_main.c 371
ets Jun 8 2016 00:22:57

rst:0x10 (RTCWDT_RTC_RESET),boot:0x3f (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3f400020,len:429240
ets Jun 8 2016 00:22:57

rst:0x10 (RTCWDT_RTC_RESET),boot:0x3f (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3f400020,len:429240
ets Jun 8 2016 00:22:57

Re: ESP32 boards

Posted: 18 Mar 2018, 16:19
by karl222
Me too ;)

Re: ESP32 boards

Posted: 18 Mar 2018, 16:23
by BertB
nd I have the same with a ESP-WROOM-32

Re: ESP32 boards

Posted: 18 Mar 2018, 17:00
by LisaM
I've my working setup attached. I'm using this one: https://www.aliexpress.com/item/Officia ... 21054.html

Can you post a picture of your setup and a link to where you bought it?

I have also these in stock:
https://www.aliexpress.com/item/ESP32-B ... 25963.html (didn't work so far)
https://www.aliexpress.com/item/LOLIN32 ... 682537.htm (it has 4MB of PsRam and is really different)
https://www.aliexpress.com/item/ESP-32S ... 38946.html (not soldered yet)

Please also try this (non-upyeasy) firmware: http://micropython.org/download#esp32 to see if it's something in uPyEasy ESP32 firmware or if it's the ESP32 board itself.

There seems to be a lot of different ESP32 board going around, which are all different.. :cry:

Cheers,

Lisa

Re: ESP32 boards

Posted: 18 Mar 2018, 17:31
by BertB
I have these two:
https://nl.aliexpress.com/item/Lolin-ES ... 0.0.0c92Eb
and:
https://nl.aliexpress.com/item/LOLIN32- ... 0.0.0c92Eb

The Oled one has no further devices attached and is directly connected to the USB of my PC.
The other one only has a BME/BMP 280 and a DS18B20

Re: ESP32 boards

Posted: 18 Mar 2018, 17:45
by BertB
On both boards, the first version of upyeasy works.

Re: ESP32 boards

Posted: 18 Mar 2018, 19:20
by LisaM
BertB wrote: 18 Mar 2018, 17:45 On both boards, the first version of upyeasy works.
That's very interesting! The first version was a 4MB version, while later ones are 2MB versions.
I've added a 4MB version (upyeasy_v021_20180318_test_esp32_4096.bin) to the release dir: https://github.com/letscontrolit/uPyEasy/releases

Can you try the 4MB version?

Cheers,

Lisa

Re: ESP32 boards

Posted: 18 Mar 2018, 19:46
by karl222
I am using this esp32 board
https://www.aliexpress.com/item/Wireles ... 0.0.gYWUKY

it is an esp32 wroom. I will give it a try with the 4MB version.

I'll keep you posted

I also have ordered esp32 wrover boards to see whether it works or not.. I really would love to see it running :D

regards
karl