mirror of
https://github.com/esphome/esphome.git
synced 2024-11-27 09:18:00 +01:00
formatting
This commit is contained in:
parent
eb254d67e7
commit
e5b81cc674
1 changed files with 10 additions and 10 deletions
|
@ -3,19 +3,19 @@
|
|||
namespace esphome {
|
||||
namespace kt0803 {
|
||||
|
||||
static float CHSEL_MIN = 70.0f;
|
||||
static float CHSEL_MAX = 108.0f;
|
||||
static float CHSEL_STEP = 0.05;
|
||||
static const float CHSEL_MIN = 70.0f;
|
||||
static const float CHSEL_MAX = 108.0f;
|
||||
static const float CHSEL_STEP = 0.05;
|
||||
|
||||
static float PGA_MIN = -15;
|
||||
static float PGA_MAX = 12;
|
||||
static float PGA_STEP = 1;
|
||||
static const float PGA_MIN = -15;
|
||||
static const float PGA_MAX = 12;
|
||||
static const float PGA_STEP = 1;
|
||||
|
||||
static float RFGAIN_MIN = 95.5f;
|
||||
static float RFGAIN_MAX = 108.0f;
|
||||
static const float RFGAIN_MIN = 95.5f;
|
||||
static const float RFGAIN_MAX = 108.0f;
|
||||
|
||||
static float ALC_GAIN_MIN = -15;
|
||||
static float ALC_GAIN_MAX = 6;
|
||||
static const float ALC_GAIN_MIN = -15;
|
||||
static const float ALC_GAIN_MAX = 6;
|
||||
|
||||
enum class ChipId {
|
||||
KT0803,
|
||||
|
|
Loading…
Reference in a new issue