kopia lustrzana https://github.com/k3ng/k3ng_cw_keyer
Add FEATURE_LCD_BACKLIGHT_AUTO_DIM dims LCD and/or Power LED after x minutes (#110)
rodzic
032b371cc4
commit
45cf4f5b8f
|
@ -1721,6 +1721,10 @@ uint16_t memory_area_end = 0;
|
|||
unsigned long last_activity_time = 0;
|
||||
#endif
|
||||
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
unsigned long last_active_time = 0;
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef FEATURE_DISPLAY
|
||||
enum lcd_statuses {LCD_CLEAR, LCD_REVERT, LCD_TIMED_MESSAGE, LCD_SCROLL_MSG};
|
||||
|
@ -2388,6 +2392,10 @@ void loop()
|
|||
check_sleep();
|
||||
#endif
|
||||
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
check_backlight();
|
||||
#endif
|
||||
|
||||
#ifdef FEATURE_PTT_INTERLOCK
|
||||
service_ptt_interlock();
|
||||
#endif
|
||||
|
@ -2733,7 +2741,10 @@ void service_keypad(){
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
} else {
|
||||
|
||||
if ((last_decode_time > 0) && (!space_sent) && ((millis() - last_decode_time) > ((1200/decoder_wpm)*CW_DECODER_SPACE_PRINT_THRESH))) { // should we send a space?
|
||||
|
@ -3403,7 +3414,10 @@ void check_sleep(){
|
|||
digitalWrite(keyer_awake,KEYER_AWAKE_PIN_AWAKE_STATE);
|
||||
}
|
||||
|
||||
last_activity_time = millis();
|
||||
last_activity_time = millis();
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
#ifdef DEBUG_SLEEP
|
||||
debug_serial_port->println(F("check_sleep: I'm awake!"));
|
||||
|
@ -3416,6 +3430,44 @@ void check_sleep(){
|
|||
|
||||
//-------------------------------------------------------------------------------------------------------
|
||||
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
void check_backlight() {
|
||||
|
||||
static unsigned long last_bl_check = 0 ;
|
||||
|
||||
if (millis() - last_bl_check < 1000) return; // not time-critical
|
||||
|
||||
last_bl_check = millis();
|
||||
|
||||
if ((last_bl_check - last_active_time) > ((unsigned long)dim_backlight_inactive_time*60000)){
|
||||
|
||||
#ifdef DEBUG_BACKLIGHT
|
||||
debug_serial_port->println(F("check_backlight: I'm asleep!"));
|
||||
#endif //DEBUG_BACKLIGHT
|
||||
|
||||
if (keyer_power_led){
|
||||
analogWrite(keyer_power_led,keyer_power_led_asleep_duty);
|
||||
}
|
||||
lcd.noBacklight();
|
||||
|
||||
} else {
|
||||
|
||||
#ifdef DEBUG_BACKLIGHT
|
||||
debug_serial_port->println(F("check_backlight: I'm awake!"));
|
||||
#endif //DEBUG_BACKLIGHT
|
||||
|
||||
if (keyer_power_led){
|
||||
analogWrite(keyer_power_led,keyer_power_led_awake_duty);
|
||||
}
|
||||
lcd.backlight();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
//-------------------------------------------------------------------------------------------------------
|
||||
|
||||
#ifdef FEATURE_DISPLAY
|
||||
void service_display() {
|
||||
|
||||
|
@ -3453,6 +3505,9 @@ void service_display() {
|
|||
}
|
||||
} else {
|
||||
if (lcd_scroll_buffer[y].charAt(x) > 0){
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
lcd.backlight();
|
||||
#endif // FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
lcd.print(lcd_scroll_buffer[y].charAt(x));
|
||||
}
|
||||
x++;
|
||||
|
@ -3603,6 +3658,9 @@ void lcd_clear() {
|
|||
#ifdef FEATURE_DISPLAY
|
||||
void lcd_center_print_timed(String lcd_print_string, byte row_number, unsigned int duration)
|
||||
{
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
lcd.backlight();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
lcd.noCursor();//sp5iou 20180328
|
||||
if (lcd_status != LCD_TIMED_MESSAGE) {
|
||||
lcd_previous_status = lcd_status;
|
||||
|
@ -3622,6 +3680,9 @@ void lcd_center_print_timed(String lcd_print_string, byte row_number, unsigned i
|
|||
#ifdef FEATURE_DISPLAY
|
||||
void clear_display_row(byte row_number)
|
||||
{
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
lcd.backlight();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
lcd.noCursor();//sp5iou 20180328
|
||||
for (byte x = 0; x < LCD_COLUMNS; x++) {
|
||||
lcd.setCursor(x,row_number);
|
||||
|
@ -3743,6 +3804,9 @@ void check_ps2_keyboard()
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
if (ps2_keyboard_mode == PS2_KEYBOARD_NORMAL) {
|
||||
switch (keystroke) {
|
||||
|
@ -4313,6 +4377,9 @@ void check_ps2_keyboard()
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
if (ps2_keyboard_mode == PS2_KEYBOARD_NORMAL) {
|
||||
switch (keystroke) {
|
||||
|
@ -5197,7 +5264,11 @@ void check_rotary_encoder(){
|
|||
if (step != 0) {
|
||||
if (keyer_machine_mode == KEYER_COMMAND_MODE) speed_change_command_mode(step);
|
||||
else speed_change(step);
|
||||
|
||||
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
// Start of Winkey Speed change mod for Rotary Encoder -- VE2EVN
|
||||
#ifdef FEATURE_WINKEY_EMULATION
|
||||
if ((primary_serial_port_mode == SERIAL_WINKEY_EMULATION) && (winkey_host_open)) {
|
||||
|
@ -5235,6 +5306,9 @@ void check_sidetone_switch()
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
if ( ss_read == HIGH ) {
|
||||
configuration.sidetone_mode = SIDETONE_ON;
|
||||
|
@ -5291,6 +5365,9 @@ void check_potentiometer()
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -6261,6 +6338,9 @@ void check_dit_paddle()
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
manual_ptt_invoke = 0;
|
||||
#ifdef FEATURE_MEMORIES
|
||||
if (repeat_memory < 255) {
|
||||
|
@ -6320,7 +6400,10 @@ void check_dah_paddle()
|
|||
|
||||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#ifdef FEATURE_MEMORIES
|
||||
repeat_memory = 255;
|
||||
#endif
|
||||
|
@ -8993,6 +9076,9 @@ void check_buttons() {
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
}
|
||||
#endif // FEATURE_BUTTONS
|
||||
|
@ -9285,6 +9371,9 @@ void send_char(byte cw_char, byte omit_letterspace)
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
if ((cw_char == 10) || (cw_char == 13)) { return; } // don't attempt to send carriage return or line feed
|
||||
|
||||
|
@ -9706,6 +9795,9 @@ void service_send_buffer(byte no_print)
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
if ((send_buffer_array[0] > SERIAL_SEND_BUFFER_SPECIAL_START) && (send_buffer_array[0] < SERIAL_SEND_BUFFER_SPECIAL_END)) {
|
||||
|
||||
|
@ -12203,7 +12295,10 @@ void check_serial(){
|
|||
incoming_serial_byte = primary_serial_port->read();
|
||||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#ifdef DEBUG_SERIAL_SEND_CW_CALLOUT
|
||||
debug_serial_send_cw[0] = (incoming_serial_byte & 0xf0)>>4;
|
||||
debug_serial_send_cw[1] = incoming_serial_byte & 0x0f;
|
||||
|
@ -12250,7 +12345,10 @@ void check_serial(){
|
|||
incoming_serial_byte = secondary_serial_port->read();
|
||||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#ifdef DEBUG_SERIAL_SEND_CW_CALLOUT
|
||||
debug_serial_send_cw[0] = (incoming_serial_byte & 0xf0)>>4;
|
||||
debug_serial_send_cw[1] = incoming_serial_byte & 0x0f;
|
||||
|
@ -17313,6 +17411,13 @@ void initialize_pins() {
|
|||
digitalWrite(keyer_awake,KEYER_AWAKE_PIN_AWAKE_STATE);
|
||||
}
|
||||
#endif //FEATURE_SLEEP
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
if (keyer_power_led){
|
||||
pinMode(keyer_power_led,OUTPUT);
|
||||
analogWrite(keyer_power_led,keyer_power_led_awake_duty);
|
||||
}
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
#ifdef FEATURE_SIDETONE_SWITCH
|
||||
pinMode(SIDETONE_SWITCH,INPUT_PULLUP);
|
||||
|
@ -17574,6 +17679,9 @@ void service_cw_decoder() {
|
|||
#ifdef FEATURE_SLEEP
|
||||
last_activity_time = millis();
|
||||
#endif //FEATURE_SLEEP
|
||||
#ifdef FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
last_active_time = millis();
|
||||
#endif //FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
|
||||
} else {
|
||||
if ((last_decode_time > 0) && (!space_sent) && ((millis() - last_decode_time) > ((1200/decoder_wpm)*CW_DECODER_SPACE_PRINT_THRESH))) { // should we send a space?
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
// #define DEBUG_CW_DECODER_WPM
|
||||
// #define DEBUG_SERIAL_SEND_CW_CALLOUT
|
||||
// #define DEBUG_SLEEP
|
||||
// #define DEBUG_BACKLIGHT
|
||||
// #define DEBUG_BUTTON_ARRAY
|
||||
// #define DEBUG_USB
|
||||
// #define DEBUG_USB_KEYBOARD
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
// #define FEATURE_LCD_HD44780
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
#define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
#define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -37,6 +37,7 @@
|
|||
// #define FEATURE_LCD_HD44780
|
||||
#define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
#define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -41,6 +41,7 @@ Generic STM32F103C "Blue Pill"
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
// #define FEATURE_LCD_HD44780
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
#define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -48,6 +48,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
//#define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
//#define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
//#define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
//#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
//#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
//#define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
//#define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
//#define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power
|
||||
//#define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
//#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
//#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
//#define FEATURE_USB_MOUSE
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
//#define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power
|
||||
//#define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
//#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
//#define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -36,6 +36,7 @@
|
|||
// #define FEATURE_LCD_HD44780
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
// #define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
// #define FEATURE_LCD_I2C_FDEBRABANDER //https://github.com/fdebrabander/Arduino-LiquidCrystal-I2C-library
|
||||
#define FEATURE_CW_DECODER // https://github.com/k3ng/k3ng_cw_keyer/wiki/385-Feature:-CW-Decoder
|
||||
#define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
#define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
//#define FEATURE_FARNSWORTH
|
||||
//#define FEATURE_DL2SBA_BANKSWITCH // Switch memory banks feature as described here: http://dl2sba.com/index.php?option=com_content&view=article&id=131:nanokeyer&catid=15:shack&Itemid=27#english
|
||||
//#define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power
|
||||
//#define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
//#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
//#define FEATURE_DIT_DAH_BUFFER_CONTROL
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
//#define FEATURE_LCD_FABO_PCF8574 // https://github.com/FaBoPlatform/FaBoLCD-PCF8574-Library
|
||||
#define FEATURE_CW_DECODER
|
||||
//#define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power
|
||||
//#define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
//#define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
//#define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
//#define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
// #define FEATURE_LCD_HD44780
|
||||
// #define FEATURE_CW_DECODER
|
||||
// #define FEATURE_SLEEP // go to sleep after x minutes to conserve battery power (not compatible with Arduino DUE, may have mixed results with Mega and Mega ADK)
|
||||
// #define FEATURE_LCD_BACKLIGHT_AUTO_DIM // turn off LCD backlight and/or dim Power Indicator LED after x minutes (LED requires a PWM pin)
|
||||
// #define FEATURE_ROTARY_ENCODER // rotary encoder speed control
|
||||
// #define FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING
|
||||
// #define FEATURE_USB_MOUSE // Uncomment three lines in k3ng_keyer.ino (search for note_usb_uncomment_lines)
|
||||
|
|
|
@ -111,6 +111,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -101,6 +101,10 @@
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -114,6 +114,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -119,6 +119,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -112,6 +112,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -112,6 +112,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -126,6 +126,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 6
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -112,6 +112,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -112,6 +112,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -105,6 +105,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -105,6 +105,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -105,6 +105,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -105,6 +105,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -36,6 +36,10 @@
|
|||
#define keyer_awake 13 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -35,6 +35,10 @@
|
|||
#define keyer_awake 13 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -82,6 +82,10 @@
|
|||
#define keyer_awake 13 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -113,6 +113,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -114,6 +114,10 @@
|
|||
#define keyer_awake 13 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -128,6 +128,10 @@
|
|||
#define keyer_awake 13 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -37,6 +37,10 @@
|
|||
#define keyer_awake 8 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
/*
|
||||
FEATURE_SIDETONE_SWITCH
|
||||
Enabling this feature and an external toggle switch adds switch control for playing cw sidetone.
|
||||
|
|
|
@ -94,6 +94,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0 // Goes active when keyer is awake, inactive when in sleep mode; change active and inactive states in keyer_settings file
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -127,6 +127,10 @@ FEATURE_SIDETONE_SWITCH
|
|||
#define keyer_awake 0
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led 0 // must be a PWM-capable pin
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_CAPACITIVE_PADDLE_PINS)
|
||||
#define capactive_paddle_pin_inhibit_pin 0 // if this pin is defined and is set high, the capacitive paddle pins will switch to normal (non-capacitive) sensing mode
|
||||
#endif
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -181,7 +182,12 @@
|
|||
#if defined(FEATURE_SLEEP)
|
||||
#define KEYER_AWAKE_PIN_AWAKE_STATE HIGH
|
||||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -206,6 +207,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -53,6 +53,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -187,6 +188,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -58,6 +58,7 @@ GENERIC STM32F103C
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -193,6 +194,11 @@ GENERIC STM32F103C
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -198,6 +199,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -56,6 +56,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -190,6 +191,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -175,6 +176,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -176,6 +177,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -53,6 +53,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -178,6 +179,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -64,6 +64,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -197,6 +198,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
#define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
#define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -194,6 +195,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
#define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
#define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -176,6 +177,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -184,6 +185,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define serial_leading_zeros 1 // set to 1 to activate leading zeros in serial numbers (i.e. #1 = 001)
|
||||
#define serial_cut_numbers 0 // set to 1 to activate cut numbers in serial numbers (i.e. #10 = 1T, #19 = 1N)
|
||||
#define go_to_sleep_inactivity_time 10 // minutes - FEATURE_SLEEP
|
||||
#define dim_backlight_inactive_time 5 // minutes - FEATURE_LCD_BACKLIGHT_AUTO_DIM
|
||||
#define default_cmos_super_keyer_iambic_b_timing_percent 33 // use with FEATURE_CMOS_SUPER_KEYER_IAMBIC_B_TIMING; should be between 0 to 99 % (0% = true iambic b;100% = iambic a behavior)
|
||||
#define default_cw_echo_timing_factor 1.75 // "factory default" setting
|
||||
#define default_autospace_timing_factor 2.0 // "factory default" setting
|
||||
|
@ -185,6 +186,11 @@
|
|||
#define KEYER_AWAKE_PIN_ASLEEP_STATE LOW
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_LCD_BACKLIGHT_AUTO_DIM)
|
||||
#define keyer_power_led_awake_duty 255 // PWM duty cycle. 0 is 0%, 255 is 100%
|
||||
#define keyer_power_led_asleep_duty 25 // 25 is quite dim. Use 0 for off
|
||||
#endif
|
||||
|
||||
#if defined(FEATURE_ETHERNET)
|
||||
// #define FEATURE_ETHERNET_IP {192,168,1,178} // default IP address ("192.168.1.178")
|
||||
// #define FEATURE_ETHERNET_MAC {0xDE,0xAD,0xBE,0xEF,0xFE,0xED}
|
||||
|
|
Ładowanie…
Reference in New Issue