Skip to content

Commit 70f45b1

Browse files
authored
Merge pull request #56 from iNavFlight/extend_mah_range
extend battery capacity to 50000mAh
2 parents bedb3f9 + 9b7d81e commit 70f45b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/SCRIPTS/TELEMETRY/iNav.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- Docs: https://github.com/iNavFlight/OpenTX-Telemetry-Widget
33

44
local zone, options = ...
5-
local VERSION = "2.1.1-rc2"
5+
local VERSION = "2.1.1-rc3"
66
local FILE_PATH = "/SCRIPTS/TELEMETRY/iNav/"
77
local SMLCD = LCD_W < 212
88
local HORUS = LCD_W >= 480 or LCD_H >= 480

src/SCRIPTS/TELEMETRY/iNav/config.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ local config = {
2828
{ o = 16, c = 1, v = 3, x = 9 }, -- Vario Steps - 24
2929
{ o = 25, c = 1, v = 0, x = 3 }, -- View Mode - 25
3030
{ o = 23, c = 1, v = 0 }, -- AltHold Center FB - 26
31-
{ o = 7, c = 5, v = 1500, x = 9950 }, -- Battery Capacity - 27
31+
{ o = 7, c = 5, v = 1500, x = 50000 }, -- Battery Capacity - 27
3232
{ o = 17, c = 1, v = 0, x = 6 }, -- Altitude Graph - 28
3333
{ o = 5, c = 2, v = 4.3, d = true, x = 4.5 }, -- Cell Calculation - 29
3434
{ o = 27, c = 1, v = 0, x = 5 }, -- Aircraft Symbol - 30
@@ -47,4 +47,4 @@ for i = 1, #config do
4747
end
4848
end
4949

50-
return config
50+
return config

0 commit comments

Comments
 (0)