-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSSB_Display.h
42 lines (35 loc) · 1.17 KB
/
SSB_Display.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef SSB_Display_h
#define SSB_Display_h
/*
* SSB_Display.h
* KK4DAS, Dean Souleles, KK4DAS@gmail.com
* May 30, 2020
*
* Constants and function prototypes used in the Display Routines
* This file needs to be in included in the main sketch
*
*/
#include "RadioControl.h"
// ===========================Function Prototypes==================================
extern void displaySMeter(byte level);
extern void displayBanner(String s);
extern void displayActVFO(uint32_t freq);
extern void displayAltVFO(uint32_t freq);
extern void displayVFOAB(int vfo);
extern void displayTxRx(int tx_rx);
extern void displayMode(int mode);
extern void displayIncr(uint32_t increment);
extern void displayTune(boolean on_off);
extern void displaySplit(boolean splt);
extern void displaySetup(String banner,
uint32_t vfoActfreq, uint32_t vfoAltfreq,
uint32_t activeVFO,
int tx_rx,
int sideband,
boolean split,
uint32_t increment,
byte s_meter);
#ifdef DISPLAY_NEXTION
extern void CheckTouch();
#endif
#endif