mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-14 09:25:30 -04:00
Added microphone TX (very basic for now)
This commit is contained in:
parent
44b2fc469c
commit
2d75722b74
7 changed files with 30 additions and 5 deletions
|
@ -67,18 +67,30 @@ struct Color {
|
|||
static constexpr Color red() {
|
||||
return { 255, 0, 0 };
|
||||
}
|
||||
static constexpr Color dark_red() {
|
||||
return { 127, 0, 0 };
|
||||
}
|
||||
|
||||
static constexpr Color orange() {
|
||||
return { 255, 127, 0 };
|
||||
return { 255, 175, 0 };
|
||||
}
|
||||
static constexpr Color dark_orange() {
|
||||
return { 127, 88, 0 };
|
||||
}
|
||||
|
||||
static constexpr Color yellow() {
|
||||
return { 255, 255, 0 };
|
||||
}
|
||||
static constexpr Color dark_yellow() {
|
||||
return { 127, 127, 0 };
|
||||
}
|
||||
|
||||
static constexpr Color green() {
|
||||
return { 0, 255, 0 };
|
||||
}
|
||||
static constexpr Color dark_green() {
|
||||
return { 0, 127, 0 };
|
||||
}
|
||||
|
||||
static constexpr Color blue() {
|
||||
return { 0, 0, 255 };
|
||||
|
@ -95,11 +107,9 @@ struct Color {
|
|||
static constexpr Color light_grey() {
|
||||
return { 127, 127, 127 };
|
||||
}
|
||||
|
||||
static constexpr Color grey() {
|
||||
return { 91, 91, 91 };
|
||||
}
|
||||
|
||||
static constexpr Color dark_grey() {
|
||||
return { 63, 63, 63 };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue