Skip to content

Commit f48cbdd

Browse files
authored
Merge pull request #22 from winemug/dexdan-batt-tweak
No rounding of battery percent
2 parents 10414e4 + 502d604 commit f48cbdd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Read the [introduction](https://github.com/winemug/omnipy/wiki) page on the wiki
1111
## May the 4th, omnipy be with you
1212
### Released update v1.4.1
1313

14-
This update fixes an issue in the communication recovery process and is strongly suggested if you are experiencing frequent disconnection issues either between Pod-RileyLink or RileyLink-Raspberry Pi.
14+
This update fixes an issue in the communication recovery process and is _strongly suggested if you are experiencing frequent disconnection issues_ either between Pod-RileyLink or RileyLink-Raspberry Pi. Note that this does NOT fix connection issues. Instead it fixes one of the several workarounds in omnipy, which try to prevent pod failures due to connection issues.
1515

16-
Note that this does not fix connection issues itself. Instead it fixes one of the several workarounds in omnipy, which try to prevent pod failures due to connection issues.
16+
See [Release Notes](https://github.com/winemug/omnipy/wiki/Release-Notes) for more information on what's new and what's changed in this release.
1717

1818
It has also come to my attention that many users are having _serious_ connectivity problems; but are simply _not realizing_ it due to the workarounds mentioned above. Please consider the following points for stable communications:
1919

@@ -26,7 +26,7 @@ It has also come to my attention that many users are having _serious_ connectivi
2626

2727
[Download](https://github.com/winemug/omnipy/releases/tag/v1.4.1) the latest version here.
2828

29-
Please refer to the [Setup documentation](https://github.com/winemug/omnipy/wiki/Setup-and-Configuration) on the wiki for information on how to set up the latest version of omnipy and the [Release Notes](https://github.com/winemug/omnipy/wiki/Release-Notes) for more information on release contents.
29+
Please refer to the [Setup documentation](https://github.com/winemug/omnipy/wiki/Setup-and-Configuration) on the wiki for information on how to set up the latest version of omnipy.
3030

3131
## Important information from the author
3232

batt_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self):
1919
self.res1 = 180 # resistor connected to VBATT (/1000)
2020
self.res2 = 100 # resistor connected to GND (/1000)
2121
self.reps = 10 # how many times to take each measurement for averaging
22-
self.pcround = 5 # round % battery to nearest
22+
self.pcround = 1 # round % battery to nearest
2323

2424
# Define Pins/Ports on ADC
2525
self.SPICLK = 16

0 commit comments

Comments
 (0)