Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keshavdv committed Dec 24, 2022
1 parent 35d7426 commit e73c85d
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 20 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

0.3.0 (2022)
------------------
- Switch delimiter format in CLI


0.2.2 (2022)
------------------
- Change JSON output
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ $ > victron-ble discover


# Dump data for a particular device (replace the ID and key with your own)
$ > victron-ble read "763aeff5-1334-e64a-ab30-a0f478s20fe1:0df4d0395b7d1a876c0c33ecb9e70dcd"
$ > victron-ble read "763aeff5-1334-e64a-ab30-a0f478s20fe1@0df4d0395b7d1a876c0c33ecb9e70dcd"
INFO:victron_ble.scanner:Reading data for ['763aeff5-1334-e64a-ab30-a0f478s20fe1']
{
"name": "SmartShunt HT4531A246S",
Expand Down
35 changes: 17 additions & 18 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,21 @@ Sample output:

```json
{
"remaining_mins": 65535,
"aux_mode": 3,
"current": 0,
"voltage": 12.53,
"consumed_ah": 0.0,
"soc": 100.0,
"alarm": {
"low_voltage": false,
"high_voltage": false,
"low_soc": false,
"low_starter_voltage": false,
"high_starter_voltage": false,
"low_temperature": false,
"high_temperature": false,
"mid_voltage": false
}
"aux_mode": "temperature",
"consumed_ah": 0.0,
"current": 0.0,
"high_starter_battery_voltage_alarm": false,
"high_temperature_alarm": false,
"high_voltage_alarm": false,
"low_soc_alarm": false,
"low_starter_battery_voltage_alarm": false,
"low_temperature_alarm": false,
"low_voltage_alarm": false,
"midpoint_deviation_alarm": false,
"remaining_mins": 65535,
"soc": 100.0,
"temperature": 382.2,
"voltage": 12.5
}
```

Expand All @@ -64,7 +63,7 @@ Sample output:

```json
{
'temperature': 29.565,
'voltage': 12.22
'temperature': 29.565,
'voltage': 12.22
}
```
2 changes: 1 addition & 1 deletion victron_ble/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.2
0.3.0

0 comments on commit e73c85d

Please sign in to comment.