├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md └── SCRIPTS ├── MIXES └── cell.lua ├── PRESETS ├── engine │ ├── img │ │ ├── background.png │ │ ├── background1.png │ │ ├── background2.png │ │ ├── etx-bg1.png │ │ ├── pagedn.png │ │ ├── pageup.png │ │ ├── splash.png │ │ └── summary.png │ ├── lib_log.lua │ ├── lib_utils.lua │ ├── libgui.lua │ ├── main.lua │ └── splash1.svg └── scripts │ ├── add_dual_rates │ ├── icon.png │ ├── main.lua │ └── meta.ini │ ├── add_throttle_lock │ ├── icon.png │ ├── main.lua │ └── meta.ini │ ├── persistent_timer_value │ ├── icon.png │ ├── main.lua │ └── meta.ini │ ├── select_model_image │ ├── main.lua │ └── meta.ini │ └── widget_flights_count_adjust │ ├── main.lua │ └── meta.ini └── TOOLS ├── FlightsHistory.lua ├── FlightsHistory ├── app.lua ├── bg1.png ├── bg2.png ├── lib_history_index.lua ├── lib_log.lua ├── lib_tables.lua ├── lib_utils.lua ├── libgui4 │ ├── ctl_table.lua │ └── libgui4.lua └── main.lua ├── FrSky_Gyro_Suite.lua ├── FrSky_Gyro_Suite ├── FrSky_S8R_S6R │ ├── calibrate.lua │ ├── img │ │ ├── delta_b.png │ │ ├── done.bmp │ │ ├── done.png │ │ ├── plane_b.png │ │ ├── planev_b.png │ │ ├── planev_s.png │ │ ├── rx_back.png │ │ ├── rx_down.png │ │ ├── rx_down2.png │ │ ├── rx_forward.png │ │ ├── rx_forward2.png │ │ ├── rx_left.png │ │ ├── rx_right.png │ │ ├── rx_right2.png │ │ ├── rx_up.png │ │ ├── rx_vert-r.png │ │ └── rx_vert.png │ └── setup.lua ├── SRx_plus │ ├── calibrateV1.lua │ ├── calibrateV3.lua │ ├── common.lua │ ├── img │ │ ├── ap_sr10p │ │ │ ├── cali_1.png │ │ │ ├── cali_2.png │ │ │ ├── cali_3.png │ │ │ ├── cali_4.png │ │ │ ├── cali_5.png │ │ │ └── cali_6.png │ │ ├── ap_sr12p │ │ │ ├── cali_1.png │ │ │ ├── cali_2.png │ │ │ ├── cali_3.png │ │ │ ├── cali_4.png │ │ │ ├── cali_5.png │ │ │ └── cali_6.png │ │ ├── ap_sr6_mini │ │ │ ├── cali_1.png │ │ │ ├── cali_2.png │ │ │ ├── cali_3.png │ │ │ ├── cali_4.png │ │ │ ├── cali_5.png │ │ │ └── cali_6.png │ │ ├── ap_sr8 │ │ │ ├── cali_1.png │ │ │ ├── cali_2.png │ │ │ ├── cali_3.png │ │ │ ├── cali_4.png │ │ │ ├── cali_5.png │ │ │ └── cali_6.png │ │ ├── back.png │ │ ├── cali_ok.png │ │ ├── delta_b.png │ │ ├── done.bmp │ │ ├── done.png │ │ ├── down.png │ │ ├── forward.png │ │ ├── left.png │ │ ├── plane_b.png │ │ ├── planev_b.png │ │ ├── planev_s.png │ │ ├── right.png │ │ ├── up.png │ │ ├── vert-r.png │ │ └── vert.png │ ├── setupV1.lua │ ├── setupV3.lua │ ├── simSR10plus.lua │ └── stickCalibrateV3.lua └── main.lua ├── LogViewer.lua ├── LogViewer ├── app.lua ├── bg1.1.svg ├── bg1.png ├── bg1.svg ├── bg2.pdn ├── bg2.png ├── bg3.png ├── bg3.svg ├── lib_file_index.lua ├── lib_file_parser.lua ├── lib_log.lua ├── lib_tables.lua ├── lib_utils.lua ├── libgui3 │ ├── ctl_button.lua │ ├── ctl_dropdown.lua │ ├── ctl_label.lua │ ├── ctl_menu.lua │ ├── ctl_title.lua │ ├── ctl_waiting_dialog.lua │ └── libgui3.lua └── main.lua ├── Model Locator (by RSSI).lua ├── PresetsLoader.lua └── locator_by_rssi ├── app.lua ├── locator.wav ├── locator1.png └── locator2.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Wiki 2 | https://github.com/offer-shmuely/edgetx-x10-scripts/wiki 3 | -------------------------------------------------------------------------------- /SCRIPTS/MIXES/cell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/MIXES/cell.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/background.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/background1.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/background2.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/etx-bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/etx-bg1.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/pagedn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/pagedn.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/pageup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/pageup.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/splash.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/img/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/img/summary.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/lib_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/lib_log.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/lib_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/lib_utils.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/libgui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/libgui.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/main.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/engine/splash1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/engine/splash1.svg -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/add_dual_rates/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/add_dual_rates/icon.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/add_dual_rates/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/add_dual_rates/main.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/add_dual_rates/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/add_dual_rates/meta.ini -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/add_throttle_lock/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/add_throttle_lock/icon.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/add_throttle_lock/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/add_throttle_lock/main.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/add_throttle_lock/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/add_throttle_lock/meta.ini -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/persistent_timer_value/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/persistent_timer_value/icon.png -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/persistent_timer_value/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/persistent_timer_value/main.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/persistent_timer_value/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/persistent_timer_value/meta.ini -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/select_model_image/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/select_model_image/main.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/select_model_image/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/select_model_image/meta.ini -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/widget_flights_count_adjust/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/widget_flights_count_adjust/main.lua -------------------------------------------------------------------------------- /SCRIPTS/PRESETS/scripts/widget_flights_count_adjust/meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/PRESETS/scripts/widget_flights_count_adjust/meta.ini -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/app.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/bg1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/bg2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/lib_history_index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/lib_history_index.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/lib_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/lib_log.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/lib_tables.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/lib_tables.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/lib_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/lib_utils.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/libgui4/ctl_table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/libgui4/ctl_table.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/libgui4/libgui4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/libgui4/libgui4.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FlightsHistory/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FlightsHistory/main.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/calibrate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/calibrate.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/delta_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/delta_b.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/done.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/done.bmp -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/done.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/plane_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/plane_b.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/planev_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/planev_b.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/planev_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/planev_s.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_back.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_down.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_down2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_down2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_forward.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_forward2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_forward2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_left.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_right.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_right2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_up.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_vert-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_vert-r.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/img/rx_vert.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/FrSky_S8R_S6R/setup.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/calibrateV1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/calibrateV1.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/calibrateV3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/calibrateV3.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/common.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/common.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_3.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_4.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_5.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr10p/cali_6.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_3.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_4.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_5.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr12p/cali_6.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_3.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_4.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_5.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr6_mini/cali_6.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_3.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_4.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_5.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/ap_sr8/cali_6.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/back.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/cali_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/cali_ok.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/delta_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/delta_b.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/done.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/done.bmp -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/done.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/down.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/forward.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/left.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/plane_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/plane_b.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/planev_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/planev_b.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/planev_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/planev_s.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/right.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/up.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/vert-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/vert-r.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/img/vert.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/setupV1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/setupV1.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/setupV3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/setupV3.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/simSR10plus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/simSR10plus.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/stickCalibrateV3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/SRx_plus/stickCalibrateV3.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/FrSky_Gyro_Suite/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/FrSky_Gyro_Suite/main.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/app.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg1.1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg1.1.svg -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg1.svg -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg2.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg2.pdn -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg2.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg3.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/bg3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/bg3.svg -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/lib_file_index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/lib_file_index.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/lib_file_parser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/lib_file_parser.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/lib_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/lib_log.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/lib_tables.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/lib_tables.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/lib_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/lib_utils.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/ctl_button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/ctl_button.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/ctl_dropdown.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/ctl_dropdown.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/ctl_label.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/ctl_label.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/ctl_menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/ctl_menu.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/ctl_title.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/ctl_title.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/ctl_waiting_dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/ctl_waiting_dialog.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/libgui3/libgui3.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/libgui3/libgui3.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/LogViewer/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/LogViewer/main.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/Model Locator (by RSSI).lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/Model Locator (by RSSI).lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/PresetsLoader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/PresetsLoader.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/locator_by_rssi/app.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/locator_by_rssi/app.lua -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/locator_by_rssi/locator.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/locator_by_rssi/locator.wav -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/locator_by_rssi/locator1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/locator_by_rssi/locator1.png -------------------------------------------------------------------------------- /SCRIPTS/TOOLS/locator_by_rssi/locator2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offer-shmuely/edgetx-x10-scripts/HEAD/SCRIPTS/TOOLS/locator_by_rssi/locator2.png --------------------------------------------------------------------------------