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.
24 lines
338 B
24 lines
338 B
/*
|
|
* Filename: menu.h
|
|
* Date: Mon 20 Sep 22:14:58 +08 2021
|
|
* Author: Englebert
|
|
* Description:
|
|
* - Menu handler
|
|
*/
|
|
|
|
#ifndef MENU_H
|
|
#define MENU_H
|
|
|
|
#include <Arduino.h>
|
|
#include "BertFPVDiversity.h"
|
|
#include "video.h"
|
|
|
|
namespace Menu {
|
|
extern int8_t menu_position;
|
|
extern uint8_t MAX_MENU_ITEMS;
|
|
|
|
void begin();
|
|
}
|
|
|
|
#endif
|
|
|