Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsnti committed Apr 19, 2020
2 parents a846fce + a8c6372 commit 801e5cb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
Binary file removed .DS_Store
Binary file not shown.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@ A simple lua-based dashboard for the TBS Tango2


## Crossfire does not display Average cells values - If it does, please open an issue to make me correct this (not an expert)
* By default, you will see the cumulated voltages on the display screen. That means that the battery gauge on the left will display irrelevant informations. If you want to fetch average cells voltage, type `set report_cell_voltage = ON` on Betaflight CLI.
By default, you will see the cumulated voltages on the display screen. That means that the battery gauge on the left will display irrelevant informations. If you want to fetch average cells voltage, type `set report_cell_voltage = ON` on Betaflight CLI.

## So, what does it look like ?
### farl.lua
#### default
![](/screenshots/default.bmp)
#### with Drone locator & Power ouput
![](/screenshots/locator-output.bmp)
#### with GPS
![](/screenshots/gps.bmp)

### farllh.lua
![](/screenshots/default-lh.bmp)


## Features
* Battery voltage (numerical and graphical) (graphical will only work correctly if you put `set report_cell_voltage = ON` on Betaflight CLI.)
Expand Down
6 changes: 3 additions & 3 deletions farl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
-- Templating

-- If you set the GPS, it will not show Quad locator & Power ouput in order to keep a readable screen
local displayGPS = true
local displayGPS = false

-- Drone locator & Power ouput
local displayQuadLocator = true
local displayPowerOutput = true
local displayQuadLocator = false
local displayPowerOutput = false

-- Will be displayed only if displayGPS, Quad locator and PowerOuput are set to false
local displayFillingText = true
Expand Down
Binary file removed screenshots/.DS_Store
Binary file not shown.

0 comments on commit 801e5cb

Please sign in to comment.