Closed eried closed 2 years ago
It should work: https://github.com/visualapproach/WiFi-remote-for-Bestway-Lay-Z-SPA/issues/92#issue-942265708
Have you edited the file "model.h" to tell the ESP what model you have?
If so, it seems you have a hardware issue. Bad soldering or needing resistors, but first things first.
Very happy to see you used female header pins. 👍
Thanks! I will continue experimenting. I tried another level converter board, same thing. Another esp, same. So I will test another pcb now
So, I tried with everything different, and still no go (new JST, esp, etc). What I noticed is this network activity:
Pressed buttons sometimes say feff instead of ffff so I imagine there is some noise. I am not sure what else to try
You didn't answer my question though
Oh sorry, yes I tried all versions in that file 🤓
Okay, the button code seem wrong. No version has that as no btn. May be a bad connection. Can you control the pump, like turning on airbubbles from the web UI?
No, I cant control anything. You think I need to add pull down resistors? first test I will do is just to write a small pass-thru code to test the esp and connections. I have a digital analyzer but that will take more effort.
More tests:
1) added 470ohm resistor in serie to the 3 data lines: nothing changed (tried CIO and DSP) 2) if I connect the screen directly and then plug the board, the screen gets powered with the last number the CIO sent, so... 5V and GND are ok (also BEEPER because I hear the music at boot)
I was thinking on the pass-thru code, but it is not as simple... so I am still thinking what could be wrong. I made a second board with everything new, but it behaves the same
Pass through is harder on the 6 wire than the 4 wire because it's bidirectional data on one wire. The display has a memory and shows the last state so you can't tell if it's working by looking at the temp. If it works it will scroll through the ip number and fw_version at startup. It appears neither the cio nor the dsp connection is working for you. Do you have any equipment to verify the data wires are in the same position as expected?
this are the wires: 5V GND D0 D1 D2 D3
when is idle:
I suspect that is the temp, which is properly read.
Now if I press TEMP UP for example:
if I turn the pump/heater:
the captures: temp up from 38 to 39 display says 38.csv press pump and heater on.csv idle.csv
I do not know much what else could help debugging
Fantastic! I love people with logic analyzers ;) Lets first find out if the wires are connected to the correct pins! Assuming you didn't alter the pinout in the code this is how it shall be connected (CIO port H1). Pin1 = 5V Pin2 = GND Pin3 = DATA = channel 1 (in your picture) = D7 Pin4 = CLK = channel 0 = D2 Pin5 = CS = channel 2 = D1 Pin6 = Audio = Not used in H1, just in H2
If you need to rearrange the wires, do it on both headers/cables, accordingly. It's possible to edit the code instead, but then you will need to do that every time you update the firmware.
Nice! I think is better if I rearrange the wires than the code. I'll try 🤓
I flipped wires on pin3 and pin4, but now it does not even receive the temperature as before (the temperature and C/F is received correctly). I will continue researching the pinout :/
I can't help you because I don't know what pin you connected to which channel. Maybe if you post another pic where you mention what the channels are connected to. And by the way, can you up the sample rate to ~1 Msamples/sec and it may be possible to see more what's happening. Settings in logic analyzer should be SPI protocol, Least significant bit first, 8 bits, CPOL = 1, CPHA = 1, enable line active low. (For my pump.)
I will try, which format is the best for sharing the captures? Do I capture something particular? Keypresses? What I will do meanwhile is to change pins in the config until I see something interesting. My pump is outside and it is very cold outside 🤣🧊
I think screenshots like this is best for now.
The high frequency line (yellow) is the clock. The one switching the fewest times is the Chip Select (red). You should be able to check your connections with that info ;-) Temperature here is quite nice today. And sun is shining.
Hi again, If I dont press anything this is how it looks:
I have the analyzer connected like this:
from left is 5V GND D0 D1 D2 D3
and my board:
1) 5V and GND I think are ok, I get 5V with the tester and if I unplug the display and plug the esp8622 board the screen keeps the last contents
2) I get the temperature OK with
// int cio_cs_pin = D1,
// int cio_data_pin = D7,
// int cio_clk_pin = D2,
but no screen and the pump does not really do anything else
If I interpret your pics right you have Ch0 = green wire. It's the clock signal. It's attached to cio D7 pin. So cio_clk_pin should be D7.
Ch1 = red wire. It's the data signal. It's attached to cio D2 pin. So cio_data_pin should be D2.
Ch2 = chip select (enable) so cio_cs_pin should be D1
As for the display port, the order should be the same. Green = clock. Dsp_clk_pin = D5 Red = data. dsp_data_pin = D4 And dsp_cs_pin = D3
Quite easy to mess things up here with all labels...
It's unclear what you mean by "temperature is working". The display is deceptive so only check web ui. And try airbubbles on off as a test for good connection between esp and the cio. The display is more apparent when it works by scrolling text etc.
I guess you should use the miami2021 model.
just to clarify: by "temperature is working" I mean that web ui gets the celsius and temperature from the pool, the screen is always dead (off) but if I plug the screen to CIO, and then quickly connect it to the esp8622 board, then the screen stays with the last temp.
The web ui actually updates the temperature (I have seen it changing down while testing). If I press any button on the web UI, nothing happens, the UI just goes back to the previous state smoothly (i.e. the slider goes back to original position)
Checking a bit what is actually sending, this is without any keypress
in between there is this, constantly (just a keepalive?):
and this is when I press the HEATER:
I wonder if bestway changed something again. This model is a TAHITI, the pump has a date of 2021-04-12 in a handle and the model is S100101
Signals are consistent with MIAMI2021 (misleading name since that's just describing the lining. The S1001xx is more trustworthy but I didn't know that at the time of coding) The repeating three bytes is the cio asking the display which button is pressed. 0x1b1b means no button. 0x1012 means heater button is pressed. The longer messages is the cio telling the dsp which led segments to turn on and at what brightness. From that we deduct all the states.
What do you say about your wiring with regard to my interpretation earlier?
Your interpretation is accurate, if I use:
bwc.begin(D1, D2, D7, D3, D5, D4, D6);
the ESP receives the current temp and unit from SIO (web interface), but nothing else happens. As on some old issues I hear some "crackling sounds" in the screen, but nothing else works. I captured some more precise actions in case you can take a look. I am thinking I need to make a simpler sketch for debugging what is happening. Do you have some scripts you used before this project took shape?
Ok, I developed with an arduino + esp01 before going 8266 but I don't think it's necessary to go simpler. There's some debugging features we should explore instead. And if you want to make sure your device is compatible softwarewise you could write down which codes corresponds to each button on the display. Like (0x42) 0x1b 0x1b Do this without the esp. I guess it will match the miami2021. The problem is probably different drivers on the hardware which may require some mods. If you can tell what chips are used we might get the answer instead of guessing.
To the debugging: Look at the console from the web browser. What does it say about 'pressed button'? This is what the display sends to the esp and if it's crazy it will probably screw things up
And if you want to make sure your device is compatible softwarewise you could write down which codes corresponds to each button on the display. Like (0x42) 0x1b 0x1b
and the longer sequence is to write back to the screen? I will take note of all the buttons, I guess holding them is a different code? (or maybe this is interpreted later). The screen does not even turn on, so I am thinking some init is missing
As soon as you touch a button that value will change. As you release it will turn back to 1B1B. You said you'd tried resistors to 'both cio and dsp'. Did you try to only have them between esp and dsp? Not on the power pins ofc.
yes, no power pins, only esp and dsp, in series. I made a small extension plug to test against the CIO too, the beep sound changed tho, which is strange because I only added a resistor to the 3 lines after 5V and GND
This is the init sequence, before the first beep, after the pump is powered:
then there is 4 second delay.
With nothing pressed, and off, is what you said 1B 1B
the other buttons:
Yeah the sound wire probably needs a pull-up/down or a bias. And maybe a dc-blocking capacitor. Something something.
IIRC you had pressed button FFFF (on the phone now so not sure) which would indicate a weak pull down from the dsp. Maybe higher resistance needed on those data lines? Like 1K? Maybe check the signals between dsp and esp with your analyzer would be good.
This is the init sequence, before the first beep, after the pump is powered:
then there is 4 second delay.
With nothing pressed, and off, is what you said 1B 1B
the other buttons:
0x42 0x02 0x00 temp up
0x42 0x13 0x12 temp down
0x42 0x01 0x00 lock
0x42 0x03 0x00 useless timer
0x42 0x10 0x12 heater
0x42 0x12 0x12 bubbles
0x42 0x11 0x12 pump
0x42 0x08 0x09 c/f unit
Yup it's the Miami2021 model you shall have defined! Now, can you confirm that the browser says 'pressed button Ffff' or 1B1B? Rightclick in the browser and choose inspect. Click console. I think you know that but just in case.
The browser just gives random values all the time for button presses. I tried putting the logic analyzer between the esp and dsp but strangely the esp does not boot, I tried with 2 units... very strange.
I tested also with a 15K pulldown on all the lines except PWR and GND, but still nothing.
The browser just gives random values all the time for button presses. I tried putting the logic analyzer between the esp and dsp but strangely the esp does not boot, I tried with 2 units... very strange.
I tested also with a 15K pulldown on all the lines except PWR and GND, but still nothing.
Pins D3 and D4: Boot fails if pulled down (during boot)
I see. Still no joy. I see that the noise from the buzzer correspond to D4 blinking wifi status. I am not sure what else to try for the moment, I played with using INPUT_PULLUP but that only changes that the pressedButton is always 0000
D4 has nothing to do with Wi-Fi. It just happens to be the built in led on one of the data pins to the dsp. Why don't you try the low pass filters sketched out on paper in another thread? It may work the same with your LLC.
these? I will give them a try tomorrow then :) I need to get some caps
Yeah!
I noticed something else, if I touch the 5v from the CIO, I can feel somewhat a "tingling" in my finger. Im assuming the transformer to 5v is quite noisy too. If I remove VIN and use an external power, that noise sound from the display related with D4 disappears.
So maybe I also need a big cap in VIN. I tried writing a dumb pass thru, only sending stuff from the cio to display, without any success tho.
ok, so this should eat any noise over 300 kHz.
considering that the clock switches maximum 80 times each ms I guess a more addecuate filter would be for 100 kHz or even a bit lower (1.5nF cap instead of 0.5), but I am just following known workarounds for now.
I also added a 1000 uF cap to GND/5V in case there is also some noise there. I will test in the night, I hope it works!
Holding thumbs
did not work :/ does not even get the temp from the CIO
Boring! Someone had better luck with really short cables. Maybe worth a try? (Don't cut the original wires in the pump)
I will try too. Nothing to lose now 😅 I was thinking on building the board with those 4x level shifter made of individual transistors, they say "i2c" in the description.
Just a small clarification, when the CS line is up, the CIO is talking right?
I think I discovered the reason why it does not work:
I will try to order another level shifter... And we will see next month depending on AliExpress
There you have it. TXB won't work. Should be the TXS iirc
OK so I changed everything to this:
And it works!! :D note that I actually had TXS before, so there is something wrong with those 8 ch level shifter. The beep is also stronger with this ones. The only thing I noticed is that from time to time the esp reboots (I still have not received my pcbs from china tho)
Congrats! Good to know. So what does it say is the reboot reason? You can check it on the bottom of the SPA CONFIG page. And to answer your question - all lines are idling high (5V), active low
It says: "Last boot: 28/04/2022, 19:21:39 Hardware Watchdog"
Anyhow, this is so awesome 😎 thanks for the help and the firmware. I'll try to port it slowly to esp32, but im very happy that it finally works.
You're welcome! Always glad to here about success. Check out this thread: #150 about websockets. It's on the 4 wire system, but may apply for you as well.
Just to close this issue, my model is a TAHITI, the pump has a date of 2021-04-12 in a handle and the model is S100101. The board with the 8CH level shifter didn't work, not even with resistors, short cables, pull downs or pull up. Tried different boards with all different parts. The option with 2x 4CH level (the simpler looking ones with GND and VIN at the middle pins) works perfectly, but it rebooted from time to time, which now stopped after adding a big 1000uF 16V cap in 5V GND.
Hi Guys, I understand this issue is now closed, however, I felt the need to chip in......
Having built this module with the 8ch Level Shifter (TXS0108E), I couldn't get it to work. I put my analyzer on and saw that the Data line was only giving little "Wisps" (unfortunately i didn't take a screen grab) and didn't seem to be switching the logic correctly. I stumbled upon this thread and saw @eried comments regarding the 4ch level shifters so I swapped out the 8ch for 2x 4ch Level Shifters. The result (on the bench, no CIO, analyser connected to the DISP output) is that the logic signals are now clean and look like they should. It is late here in the UK but I shall be testing tomorrow and will update with the result. Pretty sure it's gonna work now....
Hope this can help others with the same issue!
PS - EXCELLENT work on this @visualapproach, thanks so much for sharing this project for all to enjoy! A coffee will be winging its way to you very soon!
I assembled it for my S100101 pump, and the display does not react (it gets power and shows 22 but nothing else). Is it something stupid I am not doing?
The wifi part works, shows 22C, but for if I switch from C to F for example the slider goes back to C after few secs.