Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue #54 #57

Open
wants to merge 4 commits into
base: opentx_2.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions acknowledgments.md

This file was deleted.

4 changes: 2 additions & 2 deletions introduction/acknowledgments.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Another reason is that OpenTX maintains a build server that serves firmware comp

The OpenTX team is grateful to those who have donated to the project. You have helped making OpenTX and OpenTX Companion great.

The [Github Donor List](https://github.com/opentx/opentx/blob/master/DONATIONS.txt) is updated at each OpenTX release.
The [Github Donor List](https://github.com/opentx/opentx/blob/master/CREDITS.txt) is updated at each OpenTX release.

If you would like to contribute to OpenTX, donations are welcome and appreciated:

[![](https://github.com/opentx/lua-reference-guide/tree/89b65e383782af902c0528c648021268417248da/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DJ9MASSKVW8WN)
[![](https://github.com/opentx/lua-reference-guide/raw/opentx_2.3/.gitbook/assets/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=DJ9MASSKVW8WN)

1 change: 0 additions & 1 deletion part_i_-_script_type_overview/function_scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ return { run=run_func, init=init_func }
The script below is an example of customized countdown announcements. Note that the init function determines which version of OpenTX is running and sets the unit parameter for playNumber\(\) accordingly.

```lua
local lstannounce
local target

local running = false
Expand Down
6 changes: 3 additions & 3 deletions part_i_-_script_type_overview/mix.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ CH1 [I4]Ail Weight(+100%)
Every script must include a _return_ statement at the end, that defines its interface to the rest of OpenTX code. This statement defines:

* script _input_ table \(optional, see [Input Table Syntax](../part_ii_-_opentx_lua_api_programming_guide/input_table_syntax.md)\)
* script _output_ table \(optional, see [Output Table Syntax](https://github.com/opentx/opentx-2-3-lua-reference-guide/tree/0d355d19f1961b689994cf78b84005864d33f9b5/output_table_syntax.md)\)
* script _init_ function \(optional, see [Init Function Syntax](https://github.com/opentx/opentx-2-3-lua-reference-guide/tree/0d355d19f1961b689994cf78b84005864d33f9b5/init_function_syntax.md)\)
* script _run_ function \(see [Run Function Syntax](https://github.com/opentx/opentx-2-3-lua-reference-guide/tree/0d355d19f1961b689994cf78b84005864d33f9b5/run_function_syntax.md)\)
* script _output_ table \(optional, see [Output Table Syntax](../part_ii_-_opentx_lua_api_programming_guide/output_table_syntax.md)\)
* script _init_ function \(optional, see [Init Function Syntax](../part_ii_-_opentx_lua_api_programming_guide/init_function_syntax.md)\)
* script _run_ function \(see [Run Function Syntax](../part_ii_-_opentx_lua_api_programming_guide/run_function_syntax.md)\)

### Example \(interface only\):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* `subID` subID of the sensor, usually 0, valid range is from 0 to 7
* `instance` instance of the sensor \(SensorID\), valid range is from 0 to 0xFF
* `value` fed to the sensor
* `unit` unit of the sensor [Full list](https://github.com/opentx/opentx-2-3-lua-reference-guide/tree/0d355d19f1961b689994cf78b84005864d33f9b5/appendix/units.html)
* `unit` unit of the sensor [Full list](../../part_vii_-_appendix/units.html)
* `precision` the precision of the sensor
* `0 or not present` no decimal precision.
* `!= 0` value is divided by 10^precision, e.g. value=1000, prec=2 => 10.00.
Expand Down