2020-02-10 01:01:52 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-04-26 04:47:02 +02:00
|
|
|
#include "button.h"
|
2020-02-10 02:04:47 +01:00
|
|
|
#include "menu.h"
|
2020-02-10 01:01:52 +01:00
|
|
|
|
2020-02-10 01:16:57 +01:00
|
|
|
//Returns true if button was found, false otherwise
|
2020-04-26 04:47:02 +02:00
|
|
|
bool findPressedButton(const Button* const* buttons,
|
|
|
|
const uint8_t num_buttons,
|
2020-02-10 01:16:57 +01:00
|
|
|
Button *const button_out,
|
2020-02-10 02:04:47 +01:00
|
|
|
const Point touch_point);
|
|
|
|
|
|
|
|
enum MorsePlaybackType_e : uint8_t {
|
|
|
|
PlayChar,
|
|
|
|
PlayText
|
|
|
|
};
|
|
|
|
void initSelector(int16_t *const raw_select_val_in_out,
|
2020-04-26 04:47:02 +02:00
|
|
|
const Button* const* buttons,
|
|
|
|
const uint8_t num_buttons,
|
|
|
|
const MorsePlaybackType_e);
|
2020-02-10 02:04:47 +01:00
|
|
|
|
|
|
|
void adjustSelector(int16_t *const raw_select_val_in_out,
|
|
|
|
int16_t knob,
|
2020-04-26 04:47:02 +02:00
|
|
|
const Button* const* buttons,
|
|
|
|
const uint8_t num_buttons,
|
|
|
|
const MorsePlaybackType_e);
|
2020-02-10 06:59:15 +01:00
|
|
|
|
2020-04-26 04:47:02 +02:00
|
|
|
void endSelector(const Button *const button);
|