From 686006f4d118dee18b341104344746ba7d43f0bf Mon Sep 17 00:00:00 2001 From: Offer Shmuely Date: Tue, 12 Dec 2023 02:28:36 +0200 Subject: [PATCH] remove counter widget (#125) --- sdcard/c320x480/WIDGETS/Counter/main.lua | 47 ------------------------ sdcard/c480x272/WIDGETS/Counter/main.lua | 47 ------------------------ 2 files changed, 94 deletions(-) delete mode 100644 sdcard/c320x480/WIDGETS/Counter/main.lua delete mode 100644 sdcard/c480x272/WIDGETS/Counter/main.lua diff --git a/sdcard/c320x480/WIDGETS/Counter/main.lua b/sdcard/c320x480/WIDGETS/Counter/main.lua deleted file mode 100644 index 99e8b82f..00000000 --- a/sdcard/c320x480/WIDGETS/Counter/main.lua +++ /dev/null @@ -1,47 +0,0 @@ ----- ######################################################################### ----- # # ----- # Copyright (C) OpenTX # ------# # ----- # License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html # ----- # # ----- # This program is free software; you can redistribute it and/or modify # ----- # it under the terms of the GNU General Public License version 2 as # ----- # published by the Free Software Foundation. # ----- # # ----- # This program is distributed in the hope that it will be useful # ----- # but WITHOUT ANY WARRANTY; without even the implied warranty of # ----- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # ----- # GNU General Public License for more details. # ----- # # ----- ######################################################################### -local options = { - { "Color", COLOR, COLOR_THEME_SECONDARY1 }, - { "Shadow", BOOL, 0 } -} - -local function create(zone, options) - local pie = { zone=zone, options=options, counter=0 } - return pie -end - -local function update(pie, options) - pie.options = options -end - -local function background(pie) - pie.counter = pie.counter + 1 -end - -function refresh(pie) - pie.counter = pie.counter + 1 - - lcd.setColor(CUSTOM_COLOR, pie.options.Color) - - if pie.options.Shadow == 0 then - lcd.drawNumber(pie.zone.x, pie.zone.y, pie.counter, LEFT + DBLSIZE + CUSTOM_COLOR); - else - lcd.drawNumber(pie.zone.x, pie.zone.y, pie.counter, LEFT + DBLSIZE + CUSTOM_COLOR + SHADOWED); - end -end - -return { name="Counter", options=options, create=create, update=update, refresh=refresh, background=background } diff --git a/sdcard/c480x272/WIDGETS/Counter/main.lua b/sdcard/c480x272/WIDGETS/Counter/main.lua deleted file mode 100644 index 99e8b82f..00000000 --- a/sdcard/c480x272/WIDGETS/Counter/main.lua +++ /dev/null @@ -1,47 +0,0 @@ ----- ######################################################################### ----- # # ----- # Copyright (C) OpenTX # ------# # ----- # License GPLv2: http://www.gnu.org/licenses/gpl-2.0.html # ----- # # ----- # This program is free software; you can redistribute it and/or modify # ----- # it under the terms of the GNU General Public License version 2 as # ----- # published by the Free Software Foundation. # ----- # # ----- # This program is distributed in the hope that it will be useful # ----- # but WITHOUT ANY WARRANTY; without even the implied warranty of # ----- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # ----- # GNU General Public License for more details. # ----- # # ----- ######################################################################### -local options = { - { "Color", COLOR, COLOR_THEME_SECONDARY1 }, - { "Shadow", BOOL, 0 } -} - -local function create(zone, options) - local pie = { zone=zone, options=options, counter=0 } - return pie -end - -local function update(pie, options) - pie.options = options -end - -local function background(pie) - pie.counter = pie.counter + 1 -end - -function refresh(pie) - pie.counter = pie.counter + 1 - - lcd.setColor(CUSTOM_COLOR, pie.options.Color) - - if pie.options.Shadow == 0 then - lcd.drawNumber(pie.zone.x, pie.zone.y, pie.counter, LEFT + DBLSIZE + CUSTOM_COLOR); - else - lcd.drawNumber(pie.zone.x, pie.zone.y, pie.counter, LEFT + DBLSIZE + CUSTOM_COLOR + SHADOWED); - end -end - -return { name="Counter", options=options, create=create, update=update, refresh=refresh, background=background }