mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Fix remaning uppercase enum value.
This commit is contained in:
parent
a21295dd07
commit
fbed4d4994
1 changed files with 1 additions and 1 deletions
|
@ -217,5 +217,5 @@ private:
|
||||||
// -dB value. Example: 19 represents -9.5dB.
|
// -dB value. Example: 19 represents -9.5dB.
|
||||||
uint8_t volume = 0;
|
uint8_t volume = 0;
|
||||||
bool muted = false;
|
bool muted = false;
|
||||||
InputSource inputSource = InputSource::UNKNOWN;
|
InputSource inputSource = InputSource::Unknown;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue