mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-19 23:16:00 -05:00
12 lines
260 B
C++
12 lines
260 B
C++
#include <Arduino.h>
|
|
#include "pin_definitions.h"
|
|
|
|
void updateDisplay() {}
|
|
void redrawVFOs(){}
|
|
void drawTx(){}
|
|
int btnDown()
|
|
{
|
|
//Button has a pullup, so it reads high normally,
|
|
//and reads low when pressed down
|
|
return !digitalRead(PIN_ENC_PUSH_BUTTON);
|
|
} |