color rotation using modulo, ran clang-format for InfiniPaint
This commit is contained in:
parent
5e1f4839da
commit
2d98530976
|
@ -4,7 +4,10 @@
|
||||||
|
|
||||||
using namespace Pinetime::Applications::Screens;
|
using namespace Pinetime::Applications::Screens;
|
||||||
|
|
||||||
InfiniPaint::InfiniPaint(Pinetime::Applications::DisplayApp* app, Pinetime::Components::LittleVgl& lvgl, Pinetime::Controllers::MotorController& motor) : Screen(app), lvgl {lvgl}, motor{motor} {
|
InfiniPaint::InfiniPaint(Pinetime::Applications::DisplayApp* app,
|
||||||
|
Pinetime::Components::LittleVgl& lvgl,
|
||||||
|
Pinetime::Controllers::MotorController& motor)
|
||||||
|
: Screen(app), lvgl {lvgl}, motor {motor} {
|
||||||
std::fill(b, b + bufferSize, selectColor);
|
std::fill(b, b + bufferSize, selectColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -15,7 +18,11 @@ InfiniPaint::~InfiniPaint() {
|
||||||
bool InfiniPaint::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
bool InfiniPaint::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
||||||
switch (event) {
|
switch (event) {
|
||||||
case Pinetime::Applications::TouchEvents::LongTap:
|
case Pinetime::Applications::TouchEvents::LongTap:
|
||||||
|
color = (color + 1) % 8;
|
||||||
switch (color) {
|
switch (color) {
|
||||||
|
case 0:
|
||||||
|
selectColor = LV_COLOR_MAGENTA;
|
||||||
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
selectColor = LV_COLOR_GREEN;
|
selectColor = LV_COLOR_GREEN;
|
||||||
break;
|
break;
|
||||||
|
@ -40,12 +47,10 @@ bool InfiniPaint::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
|
||||||
|
|
||||||
default:
|
default:
|
||||||
color = 0;
|
color = 0;
|
||||||
selectColor = LV_COLOR_MAGENTA;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::fill(b, b + bufferSize, selectColor);
|
std::fill(b, b + bufferSize, selectColor);
|
||||||
color++;
|
|
||||||
motor.RunForDuration(50);
|
motor.RunForDuration(50);
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <lvgl/lvgl.h>
|
|
||||||
#include <cstdint>
|
|
||||||
#include "Screen.h"
|
#include "Screen.h"
|
||||||
#include "components/motor/MotorController.h"
|
#include "components/motor/MotorController.h"
|
||||||
|
#include <cstdint>
|
||||||
|
#include <lvgl/lvgl.h>
|
||||||
|
|
||||||
namespace Pinetime {
|
namespace Pinetime {
|
||||||
namespace Components {
|
namespace Components {
|
||||||
|
@ -30,7 +30,7 @@ namespace Pinetime {
|
||||||
static constexpr uint16_t bufferSize = width * height;
|
static constexpr uint16_t bufferSize = width * height;
|
||||||
lv_color_t b[bufferSize];
|
lv_color_t b[bufferSize];
|
||||||
lv_color_t selectColor = LV_COLOR_WHITE;
|
lv_color_t selectColor = LV_COLOR_WHITE;
|
||||||
uint8_t color = 3;
|
uint8_t color = 2;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user