Skip to content
Closed
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
},
"cSpell.enabled": true,
"cSpell.words": [
"Anker",
"Solix",
"stringifying"
],
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ See the [support table](https://solixble.readthedocs.io/en/latest) in the docume
- F3800
- Solarbank 2
- Solarbank 3
- Prime Charger 160w
- Prime Charger 250w
- Potentially more!

Expand Down
4 changes: 4 additions & 0 deletions SolixBLE/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@
F2000,
F3800,
Generic,
PrimeCharger160w,
PrimeCharger250w,
Solarbank2,
Solarbank3,
)
from .prime_device import PrimeDevice
from .states import (
ChargingStatus,
ChargingStatusC300DC,
Expand All @@ -30,6 +32,7 @@

__all__ = [
"SolixBLEDevice",
"PrimeDevice",
"C300",
"C300DC",
"C800",
Expand All @@ -39,6 +42,7 @@
"F3800",
"Solarbank2",
"Solarbank3",
"PrimeCharger160w",
"PrimeCharger250w",
"Generic",
"ChargingStatus",
Expand Down
2 changes: 1 addition & 1 deletion SolixBLE/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#: GATT Service UUID for sending commands / negotiating.
UUID_COMMAND = "8c850002-0302-41c5-b46e-cf057c562025"

#: GATT Service UUID for identifying Solix devices (Tested on C300X and C1000).
#: GATT Service UUID for identifying Solix/Prime devices (Tested on C300X, C1000, and Prime 160w Charger).
UUID_IDENTIFIER = "0000ff09-0000-1000-8000-00805f9b34fb"

#: Time to wait before re-connecting on an unexpected disconnect.
Expand Down
Loading
Loading