-
Amazing project! it is like 2-3 full time engineers whole year's job. I have a indoor controller RS6 control panel, I thought AqualinkD should work. Opened the outside control box, and found the chipset model is ALRS6 8157 JJ, if it is too old, does it mean if I buy a new RS8 combo panel and upgrade myself? Not super clear about how the pool system works. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
I suspect you do not have the wiring correct see https://github.com/sfeakes/AqualinkD/wiki#RS485 or the RS485 serial adapter you have is not good. you should be getting commands back and forth on the serial port. You hook it up in parallel on the same port that it uses to talk to the pumps. BTW I have been using this RS485 adapter for 3 years flawless - https://smile.amazon.com/gp/product/B01LCFRR3E/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1 |
Beta Was this translation helpful? Give feedback.
-
ALRS6 8157 JJ Will be fine. as above, either wiring / hardware adapter or OS serial problem. Most people who have this issue it’s simply a case of swapping the data + & - wires around. But keypad termination can also be an issue, way to check that is to disconnect the data + & - from the keypad. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the quick response, I disconnected the keypad and connected black and yellow to this one according to the instruction. https://www.amazon.com/gp/product/B01HI9CMT2/ref=ppx_yo_dt_b_asin_title_o05_s01?ie=UTF8&psc=1 pi@raspberrypi:~/software/AqualinkD $ sudo ./release/serial_logger /dev/ttyUSB0 -p 1000 Notice: RS Serial: RS485 interface received 1000 packets in 99 seconds (~10.10 Msg/Sec) |
Beta Was this translation helpful? Give feedback.
-
Yes you should change that ID. These are the lines you should try in the config. (obviously find the appropriate place so you don't duplicate / override them)
The above is assuming you have a Combo unit (ie pool AND spa) modes. Of not, change "RS-6 Combo" to "RS-6 Only" First time you start, leave it running for a new minutes, let it connect and sort itself out, this can take ~2 mins. NOTE. Most keypads are 0x08 by default, so the above config is assuming that. What you can do once it all looks good / working, is plug the keypad back in, and run the serial logger again. The serial logger will tell you what ID the keypad is using, then obviously don't use the same ID as the keypad in the aqualinkd config. |
Beta Was this translation helpful? Give feedback.
Yes you should change that ID. These are the lines you should try in the config. (obviously find the appropriate place so you don't duplicate / override them)
The above is assuming you have a Combo unit (ie pool AND spa) modes. Of not, change "RS-6 Combo" to "RS-6 Only"
First time you start, leave it running for a new minutes, let it connect and sort itself out, this can take ~2 mins.
NOTE. Most keypads are 0x08 by default, so the above config is assuming that. What you can do once it all looks good / working, is plug the keypad back in, and run the serial logger again.…