-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request: isolate the Victron BLE access lib from the ESPHOME biding #23
Comments
This issue is that i use the Bluetooth infra provided by ESP Home. So as a lib it would require a bring your own Bluetooth stack. Are you aware of a good library example / pattern for ESP32 which needs Bluetooth? |
I am actually looking for this too. My usecase is that I want to get a readout every hour or so from the smartshunt in my campervan and send it home over LoRa/The Things Network. Now I am trying to write something similar to your library and I only got as far as receiving the manufacturer data from the smartshunt (pretty basic stuff, probably), but struggle (due to lack of time and knowledge) with the decryption part and probalby after that with translating the decrypted data to something usefull I can use (but I am hoping I can borrow that part from your library, when I can get that far ). |
Thank you for your message. I'm not a Bluetooth expert on ESP32 at all, unfortunately. But from what I've read, it seems to be pretty easy and straightforward. I think a big part of the value lies in the parsing / decrypting logic of the frames. |
Some devices can be accessed via VE.direct which is a serial line. I would prefer to use such method because I trust in wired connections more than in wireless (life lessons). So yes, I too would like to see a spin off. Thank you. |
For the VE.Direct to ESPHome connection is already an existing project - https://github.com/KinDR007/VictronMPPT-ESPHOME. |
Oh, great. Thanks for that and keep up your good work. |
As this implementation of Victron BLE access seems to be the first one really working, it would be really great if we could use it even outside of the ESPHome project.
For example, being able to use the lib by itself in any ESP32 project would be nice.
The binding to ESPHome could abstract the lib in this way.
Thank you for considering this idea and for this nice work !
Bruno
The text was updated successfully, but these errors were encountered: