mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-25 15:20:31 -04:00
ADSB position decoding
Date and time string format function Binary update
This commit is contained in:
parent
9d902bc224
commit
2628f9c03d
15 changed files with 255 additions and 108 deletions
|
@ -26,6 +26,17 @@
|
|||
|
||||
namespace ui {
|
||||
|
||||
Color term_colors[8] = {
|
||||
Color::black(),
|
||||
Color::red(),
|
||||
Color::green(),
|
||||
Color::yellow(),
|
||||
Color::blue(),
|
||||
Color::magenta(),
|
||||
Color::cyan(),
|
||||
Color::white()
|
||||
};
|
||||
|
||||
bool Rect::contains(const Point p) const {
|
||||
return (p.x() >= left()) && (p.y() >= top()) &&
|
||||
(p.x() < right()) && (p.y() < bottom());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue