1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// config-mode.h: Config mode base functions for Anduril.
// Copyright (C) 2017-2023 Selene ToyKeeper
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
// menus can use 2 colors
#if defined (CONFIG_WAITING_CHANNEL) || defined(CONFIG_BLINK_CHANNEL)
#define USE_CONFIG_COLORS
#endif
#if NUM_CHANNEL_MODES > 1
// when true, changes the channel mode for each config step
bool config_color_per_step = false;
#endif
// config menu
uint8_t config_state_base(
Event event,
uint16_t arg,
uint8_t num_config_steps,
void (*savefunc)(uint8_t step, uint8_t value)
);
|