1
// smooth-steps.h: Smooth step adjustments for Anduril.
2
// Copyright (C) 2023 Selene ToyKeeper
3
// SPDX-License-Identifier: GPL-3.0-or-later
7
#ifdef USE_SMOOTH_STEPS
9
uint8_t smooth_steps_start;
10
uint8_t smooth_steps_target;
11
uint8_t smooth_steps_in_progress;
12
uint8_t smooth_steps_speed;
14
void smooth_steps_iter();
16
void set_level_smooth(uint8_t level, uint8_t speed);