probonopd / WirelessPrinting

Print wirelessly from Cura, PrusaSlicer or Slic3r to your 3D printer connected to an ESP8266 or ESP32 module
352 stars 65 forks source link

Wemos D1 mini v3 #133

Open Kotik82 opened 4 years ago

Kotik82 commented 4 years ago

Had previously a Wemos D1 mini pro with 16mb flash and everything was working fine (using the spiffs) but as i use that board for other projects i ordered a Wemos D1 mini v3 and a SD card shield for it.

After compiling and uploading to the new board i was able to connect and configure wifi but connecting it to the printer simply doesn't work, the device connects properly to the wifi network but it seems to be unable to communicate with the printer over UART. I checked and triple check my wiring and everything seems to be ok.

If i replace the D1 mini V3 with the D1 mini pro then everything is working fine again........

PS i tried the D1 mini V3 without the SD card shield, same results PS2 runing Marlin 2.0 bugfix with #define BAUDRATE 250000

probonopd commented 4 years ago

Did you compile yourself for both boards?

Kotik82 commented 4 years ago

Yes, compiled myself in both cases.

Kotik82 commented 4 years ago

Investigating some more, i see a small difference on the hardware side that might be affecting the issue.

The D1 mini V1 got a 470Ohm resistor on both the RX and TX pins while the D1 mini V3 got no resistors at all.

I need to find a 470Ohm resistor and solder it on the RX pin and see if that changes anything.

probonopd commented 4 years ago

Strange, I am using a D1 mini myself, with a SD card shield. What happens if you use the precompiled one, with and without SD card?

probonopd commented 4 years ago

Never seen a V3...

Kotik82 commented 4 years ago

Take a look here, i think it lists the Wemos mini models with their schematics, might come useful.

https://wiki.wemos.cc/products:d1:d1_mini

Kotik82 commented 4 years ago

Just uploaded the precompiled bin over OTA, same issue remains.

I don't have a 470Ohm resistor...... need to find one.

Kotik82 commented 4 years ago

Ordered the resistors but also got an idea, is it possible to define different pins for RX and TX, essentially redirecting them to different GPIO pins?

If yes then do you have an idea of how to do so?

probonopd commented 4 years ago

I've done that for ESP32 but did not look into it for ESP8266.

Makes me wonder, does serial communication work at all on the V3 modules? Or do we have to consider them as defective?

Kotik82 commented 4 years ago

I got the resistors, will have to solder them in tomorrow and will let you know, there is always the possibility that i got a defective module, but while searching the web for similar issues i found another guy that has exactly the same issue with serial communication with a gps module and a V3 module.

Kotik82 commented 4 years ago

So, i soldered the resistors (470Ohm) on both TX and RX, still doesn't work. I am out of ideas, its either a defective board or Wemos D1 mini V3 has serial issues.

It is very strange cause everything else works, i can upload files i can upload OTA sketch but there is no communication with the printer.

I give up.

ipepe commented 4 years ago

@Kotik82 Maybe try connecting Wemos to Wemos and check if serial is working?

probonopd commented 4 years ago

Or connect the V3 RX and TX pins to a USB-to-Serial adapter and try talking to it both ways. We need to be sure that the hardware side of things is working at all.

Kotik82 commented 4 years ago

So i am back with more info.

Till now my theory was that since TX and RX pins of any ESP8266 are 3.3v tolerant (they might work with 5v logic but it is always better to run them with 3.3v logic)so i need to level shift the 5v TX of the SKR1.3 UART to 3.3v RX on the Wemos.

Things i have tried till now:

  1. 1k ohm resistor in series with RX and 2k ohm in parallel with GND ---> didnt work.
  2. a zener diode (3.3v) in series with the RX ---> didnt work.
  3. flashed ESP3D on the Wemos to see if the UART interface is working ----> working fine..........

So the UART of the Wemos D1 V3 is fine, there is something else going on.

Cause i can control the printer just fine with ESP3D on the same Wemos that refuses to connect with this sketch here.

ipepe commented 4 years ago

Did You build yourself ESP3D or flashed downloaded binary?

Kotik82 commented 4 years ago

Build myself.

GMagician commented 4 years ago

What about SKR RX level? if 5V maybe 3.3 is not good enough to drive it. Also is GND common to both devices?

Kotik82 commented 4 years ago

and each time i build i make sure to erase whole flash with Wife settings inculded.

ipepe commented 4 years ago

Can You also confirm that after flashing WirelessPrinting on V3, when You open built in Arduino IDE's Serial Emulator You can see M115 messages appearing?

Kotik82 commented 4 years ago

What about SKR RX level? if 5V maybe 3.3 is not good enough to drive it. Also is GND common to both devices?

3.3v is usually fine on TX lines if u go from 3.3 to 5v logic on the TX side of things plus same hardware is working fine with a different sketch.

GND is common for both cause i am powering the Wemos fromthe AUX port of the SKR

Kotik82 commented 4 years ago

Can You also confirm that after flashing WirelessPrinting on V3, when You open built in Arduino IDE's Serial Emulator You can see M115 messages appearing?

I can confirm that M115 does show up and under it i get garbage output till the M115 shows up again.

Kotik82 commented 4 years ago

But notice something interesting, the garbage output is not similar between the Wemos pro mini and the Wemos D1 mini V3 The pro mini output looks like this :

ph⸮ph⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮M115 M115 ph⸮ph⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮M115 M115

while on the mini v3 it looks a bit different:

hx⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮M115 M115 hx⸮t⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮M115 M115 t⸮hx⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮M115 M115 hx⸮hx⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮⸮M115 M115

probonopd commented 4 years ago

Are we sure 250000 baud are working properly? I have ever only tested it with 115200 so far.

Kotik82 commented 4 years ago

I reflashed Marlin 2.0 with 115200 yesterday and that didn't fix the issue.

I also changed PrinterSerial.begin(serialBauds[serialBaudIndex]); to PrinterSerial.begin(115200); still no go... :(

Kotik82 commented 4 years ago

I am pretty sure there is some kind of voodoo involved :)

probonopd commented 4 years ago

Just for fun, you have probably also tried Marlin 1.x? (I have never tested it with 2.0.)

ipepe commented 4 years ago

You could also try on some really low baud like 9600.

Or maybe it is some kind of simple hardware issue? Maybe try changing cables, or resoldier TX/RX pins on Wemos? Maybe it's issue with voltage regulator on ESP? Try maybe powering it from usb charger?

You could still try connecting two Wemos devices together. You could upload a piece of code that flashed builtin LED when it receives M115 string or maybe any kind of string on to V3 and connect it to Your older Wemos that works.

I also recommend that You should have single baud rate defined here: https://github.com/probonopd/WirelessPrinting/blob/master/ESP8266WirelessPrintAsync/ESP8266WirelessPrintAsync.ino#L64

Kotik82 commented 4 years ago

Just for fun, you have probably also tried Marlin 1.x? (I have never tested it with 2.0.)

I didnt try 1.x, but your code is working fine on 2.0 cause i have been using it on the Pro Mini with no issues.

You could also try on some really low baud like 9600.

Or maybe it is some kind of simple hardware issue? Maybe try changing cables, or resoldier TX/RX pins on Wemos? Maybe it's issue with voltage regulator on ESP? Try maybe powering it from usb charger?

You could still try connecting two Wemos devices together. You could upload a piece of code that flashed builtin LED when it receives M115 string or maybe any kind of string on to V3 and connect it to Your older Wemos that works.

Tried 9600 and while the LCD display is extremely slow with it the esp refuses to connect :( i just now tried powering the esp over a power bank, same issue, also tried playing a bit with #define REPEAT_M115_TIMES 1, no change.

I triple checked my soldering and thats exactly what drives me mad, same Wemos device when flashed with ESP3D (same pins same cables same everything) works instantly. I am right now checking the ESP3D code, specifically the BAUD RATE part of it to see what they are doing differently.

It is not a big deal, after all a wemos mini v1 or v2 price is so low that i could order one and be done with it, i am just trying to figure out the issue out of curiosity and maybe save some headache in the future while learning something new :)

ipepe commented 4 years ago

I'm interested also why this doesn't work when it should.

I edited my previous reply with:

I also recommend that You should have single baud rate defined here: https://github.com/probonopd/WirelessPrinting/blob/master/ESP8266WirelessPrintAsync/ESP8266WirelessPrintAsync.ino#L64

probonopd commented 4 years ago

It is not a big deal, after all a wemos mini v1 or v2 price is so low that i could order one and be done with it, i am just trying to figure out the issue out of curiosity and maybe save some headache in the future while learning something new :)

Thanks for being persistent - this is interesting stuff indeed!

CraigHoffmann commented 4 years ago

Hi, I had this issue with some Wemos D1Mini V3 clones from ebay. The issue is that the TX pin from the CH340C is connected directly to the ESP8266 RX pin. (the mini pro is a bit different) When using the board by itself this is fine, but when you want to use an external serial device via the header pins it causes a problem as it seems in my case anyway the CH340C is never tri-stated so is always competing with the external TX you connect. I haven't yet looked at the CH340C datasheet to see if it should tri-state as I fixed it in the hardware.

As I have a electronic workbench always setup it was easiest for me just to cut the track after programming the Wemos. Of course the usb serial is then broken unless you resolder a connecting wire but that doesn't bother me.

I have attached some photos of where I cut if you wan to go this way at your own risk.

wemos_serial wemos cut track

As was mentioned previously I think it would be much better to utilize the ESP8266 TX/RX pin swap feature and swap to different pins after power up. This would also have the added benefit that all the ESP startup comms would not get sent to the 3D printer (this may be causing problems in an issue I see logged about flashing th 3D printer over the WiFi)

probonopd commented 4 years ago

As was mentioned previously I think it would be much better to utilize the ESP8266 TX/RX pin swap feature and swap to different pins after power up.

I'd welcome a pull request that does it for ESP8266. I am already doing it for ESP32.