I build a K3NG Keyer with ARDUINO_GENERIC_STM32F103C. (#100)

I noticed command buttons 1-3 are not working. (Only "Button - 0" is working).
This issue caused because the range of AnalogRead() was different.
So, I fixed the range of "max_value" in "buttonarray.h"
VK2EFL-Change-Personalized-Startup-Operation
7m4mon 2020-07-18 06:33:14 +09:00 zatwierdzone przez GitHub
rodzic 0be678dd3c
commit 82f5c1f827
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -7,7 +7,7 @@
#define DEBOUNCE_MS 200
#define NUMBER_OF_BUTTON_READS_TO_AVERAGE 19
#if defined(ARDUINO_ARCH_ESP32)
#if defined(ARDUINO_ARCH_ESP32) || defined(ARDUINO_GENERIC_STM32F103C)
#define max_value 4095
#else
#define max_value 1023