You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
373 B
23 lines
373 B
/*
|
|
* Filename: main.h
|
|
* Date: Mon 20 Sep 22:14:58 +08 2021
|
|
* Author: Englebert
|
|
* Description:
|
|
* - Main minimalist screen
|
|
*/
|
|
|
|
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <Arduino.h>
|
|
#include "BertFPVDiversity.h"
|
|
#include "video.h"
|
|
#include "channels.h"
|
|
|
|
namespace Main {
|
|
void begin();
|
|
void signalbar(uint8_t rssi1, uint8_t rssi2);
|
|
void channelbox();
|
|
}
|
|
|
|
#endif
|