ubitxv6/menu_utils.h

28 lines
850 B
C
Raw Permalink Normal View History

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