Replies: 11 comments 25 replies
-
Beste,
we zijn er even tussenuit t.e.m. 15/08/2023.
Na ons verlof zijn we je terug graag van dienst.
Prettige vakantie!
David & Nele
|
Beta Was this translation helpful? Give feedback.
-
Just my 2c 💯 I certainly think so. ESPHome makes ESP devices infinitely easier to manage, deploy and update. If it were possible - it would make this much more accessible. I desperately wanted to assist with this project, but I'm so time poor that I haven't had the time to dig in to even get the initial bits going - I even have all the hardware, and just got nowhere :( ESPHome removes a lot of the variables in the setup of the device - if you've physically connected it, then the platform should work. 😊 |
Beta Was this translation helpful? Give feedback.
-
I think it would be a good go. Think it would make it really seamless to see when there's a new update, easily update and an just a great way to handle things. If I understood the example I sent earlier right (the Mitsubishi heatpump integration), I think it also gives some benefits similar to custom integrations too. But I guess we could wait until stuff is a bit more mature, anyway I'm willing to give it a go and see if we can make it work. The whole idea, I think, is that the "library" itself is standalone, and then the esphome integration comes on top of that and uses the library. So there should be no issues for people wanting to use the library as today. |
Beta Was this translation helpful? Give feedback.
-
I have started putting the basic structure together #48 |
Beta Was this translation helpful? Give feedback.
-
I've just pushed code to the ESPHome branch that at lest compiles - doesn't do anything yet, but the scaffolding is complete now @tmjo or anyone else who wants to actually build out the component itself |
Beta Was this translation helpful? Give feedback.
-
Ok, now has a branch that does create a valid ESPHome entry, but none of the actually writing of the balboaGL code to the climate component is done yet. Not sure with ESPHome if we can expose all the different sensors without needing to define them all one by one the yaml |
Beta Was this translation helpful? Give feedback.
-
I now have my new Lilygo T-RSC3 running the ESPHome branch. Doesn't do anything yet so far other than to try and read from the serial port, but that's a start ;) |
Beta Was this translation helpful? Give feedback.
-
Progress update: Docs for writing anything but the most basic components is rather lacking, for example not found any docs for the python script used to link your yaml to the C code. By looking at a the source of a few other components I'm slowly piecing what we need together. Ultimately we will want a single component rather than collection of climate, sensor and switch. So will need to do a refactor for that. I'm also unclear if direct access to HardwareSerial or ESPHomes UART is the most appropriate approach. At the moment, still using HardwareSerial as that's what is used for the regular "sensor" code If anyone has a tub with 3 ports like mine, you can try and I'm doing and running the more complete original code on one and the new ESPHome on another while we are still working on feature parity |
Beta Was this translation helpful? Give feedback.
-
I'm a little concerned that I'm spending huge amounts of time trying to get feature parity between the existing Arduino sensor app and ESPhome component, but interest seems to have gone quiet You can do OTA with the existing sensor and it already does auto discovery, so really esphome just means your don't need to install vscode+platformio to set your WiFi and MQTT connection details I'm tempted to park any further development unless I hear back that folk are still interested in this option |
Beta Was this translation helpful? Give feedback.
-
Hit a snag. Struggling to get ESPHome to respond quickly enough. In my own code I suppress doing a anything other than taking with the tub when trying to send a command, but not so easy to do with ESPHome that has it is own stuff in the main loop for the other components |
Beta Was this translation helpful? Give feedback.
-
I've not got data reading in (A & B were reversed), but not able to send anything still. The only branch that's working for me is the main branch. I haven't played with the ESPHome branch yet - not sure how it needs to be configured. Any thoughts on how I can help troubleshoot the inability to send commands? |
Beta Was this translation helpful? Give feedback.
-
Would there be any advantage to making an ESPHome custom component rather than the MQTT-based ArduinoHomeAssistant ?
https://esphome.io/components/sensor/custom.html
https://esphome.io/custom/custom_component.html
Beta Was this translation helpful? Give feedback.
All reactions