Victron Laderegler per Bluetooth in HA?

DerDumme:)

New member
Hi

gibt es eigentlich die Möglichkeit, die Victron Laderegler auch per Bluetooth in HA einzubinden?
Ich hab 2 dieser Laderegler, aber bin scheinbar zu dumm eine passende Lösung zu finden.

Es gibt Lösungen mit ESP-Home und Kabeln, aber dann bräuchte ich ja auch 2 ESP dazu, oder nicht?

Danke schon mal.
 
Ich bin mit dem Victron Laderegler jetzt nicht so vertraut.
Per Bluetooth anschließen, warum nicht. Dein HA läuft auf irgendeinem Computer, wo man sicher nen Bluetooth Stick einstecken könnte. Aber, die Reichweite dürfte nicht so dolle sein.
ESPHome würde ich auf jeden fall vorziehen. Und wieviel ESP Du brauchst, ist eine Frage von "wieviel Leitungen mußt Du weiter leiten".
Wenn der Victron z.B. mit 2 Leitungen zur Kommunikation auskommt, hat ein ESP ja eigentlich genug freie Anschlüße, um auch mehrere Victron zu betreiben. Die Frage ist auch, welche Software läuft auf dem ESP. Kann die mehrere Laderegler an unterschiedlichen Anschlüßen verwalten ?
Ansonsten, so ein ESP kostet ja nun nicht die Welt.
 
Hi, ich habe auch einen Victron mit Bluetooth integriert (ESPhome).
Aber da ist es wirklich so, dass Du pro Victron einen ESP hast, tut ja nicht weh oder?
 
Hier übrigens der ESPhome Code:
Du musst da die Encription Keys und so anpassen, dazu findest Du im Netz sicher die Anleitung. (per BT auf Smartphone, Victron App...)

esphome:
name: victronble
friendly_name: VictronBle
compile_process_limit: 1
esp32:
board: esp32dev
framework:
type: arduino
# Enable logging
logger:
level: DEBUG
# Enable Home Assistant API
api:
encryption:
key: "2mP7oE5lelT+W0m430Gk8pEolvJTBINpnHOsu6o4d0U="
ota:
password: "f9c3661a05cdaf8a95c6a5ecdce5c16e"
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
# Enable fallback hotspot (captive portal) in case wifi connection fails
ap:
ssid: "Victronwired Fallback Hotspot"
password: "K3Nkp3KScEDN"
captive_portal:

substitutions:
# Set the MAC addresses and encryption keys of your Victron devices here
# The values here are examples and cannot work for your devices
smart_solar_mac_address: D0:F4:3A:88:59:CD
smart_solar_encryption_key: ab37a0b62b84a6717937cb39750c568b
external_components:
- source: github://Fabian-Schmidt/esphome-victron_ble
esp32_ble_tracker:
victron_ble:
- id: MySmartSolar
mac_address: ${smart_solar_mac_address}
bindkey: ${smart_solar_encryption_key}
sensor:
# MySmartSolar
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "Battery Voltage"
type: BATTERY_VOLTAGE
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "Battery Current"
type: BATTERY_CURRENT
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "Yield Today"
type: YIELD_TODAY
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "PV Power"
type: PV_POWER
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "Load Current"
type: LOAD_CURRENT
binary_sensor:
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "MPPT is in Fault state"
type: DEVICE_STATE_FAULT
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "MPPT has Error"
type: CHARGER_ERROR
text_sensor:
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "MPPT state"
type: DEVICE_STATE
- platform: victron_ble
victron_ble_id: MySmartSolar
name: "MPPT Error reason"
type: CHARGER_ERROR
 

Zurzeit aktive Besucher

Letzte Anleitungen

Statistik des Forums

Themen
4.666
Beiträge
47.655
Mitglieder
4.312
Neuestes Mitglied
Harway2007
Zurück
Oben