summaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2020-02-16 18:32:36 +0100
committerJF <jf@codingfield.com>2020-02-16 18:32:36 +0100
commit167a0ffc873a2442af43d0347efd00f84932b8cc (patch)
tree2e131e3c97b1c67e0dff6bab516a1fe5958e1741 /src/drivers
parent52539a5ff1b6f52c65b032ef1668d43d4df2dc24 (diff)
Add touch panel port to lvgl.
PoC of user interaction with 3 screen (clock, menu and app).
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/Cst816s.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/drivers/Cst816s.cpp b/src/drivers/Cst816s.cpp
index b1af12d4..61bce94c 100644
--- a/src/drivers/Cst816s.cpp
+++ b/src/drivers/Cst816s.cpp
@@ -78,26 +78,26 @@ Cst816S::TouchInfos Cst816S::GetTouchInfo() {
info.action = action;
info.gesture = static_cast<Gestures>(touchData[gestureIndex]);
- NRF_LOG_INFO("---------------")
- NRF_LOG_INFO("ID : %d", pointId);
- NRF_LOG_INFO("NB : %d", nbTouchPoints);
- NRF_LOG_INFO("X/Y :%d / %d", info.x, info.y);
- NRF_LOG_INFO("Action : %d", action);
- NRF_LOG_INFO("Finger : %d", finger);
- NRF_LOG_INFO("Pressure : %d", pressure);
- NRF_LOG_INFO("area : %d", area);
- NRF_LOG_INFO("Touch : %s", info.isTouch?"Yes" : "No");
- switch(info.gesture) {// gesture
- case Gestures::None: NRF_LOG_INFO("Gesture : None"); break;
- case Gestures::SlideDown: NRF_LOG_INFO("Gesture : Slide Down"); break;
- case Gestures::SlideUp: NRF_LOG_INFO("Gesture : Slide Up"); break;
- case Gestures::SlideLeft: NRF_LOG_INFO("Gesture : Slide Left"); break;
- case Gestures::SlideRight: NRF_LOG_INFO("Gesture : Slide Right"); break;
- case Gestures::SingleTap: NRF_LOG_INFO("Gesture : Single click"); break;
- case Gestures::DoubleTap: NRF_LOG_INFO("Gesture : Double click"); break;
- case Gestures::LongPress: NRF_LOG_INFO("Gesture : Long press"); break;
- default : NRF_LOG_INFO("Unknown"); break;
- }
+// NRF_LOG_INFO("---------------")
+// NRF_LOG_INFO("ID : %d", pointId);
+// NRF_LOG_INFO("NB : %d", nbTouchPoints);
+// NRF_LOG_INFO("X/Y :%d / %d", info.x, info.y);
+// NRF_LOG_INFO("Action : %d", action);
+// NRF_LOG_INFO("Finger : %d", finger);
+// NRF_LOG_INFO("Pressure : %d", pressure);
+// NRF_LOG_INFO("area : %d", area);
+// NRF_LOG_INFO("Touch : %s", info.isTouch?"Yes" : "No");
+// switch(info.gesture) {// gesture
+// case Gestures::None: NRF_LOG_INFO("Gesture : None"); break;
+// case Gestures::SlideDown: NRF_LOG_INFO("Gesture : Slide Down"); break;
+// case Gestures::SlideUp: NRF_LOG_INFO("Gesture : Slide Up"); break;
+// case Gestures::SlideLeft: NRF_LOG_INFO("Gesture : Slide Left"); break;
+// case Gestures::SlideRight: NRF_LOG_INFO("Gesture : Slide Right"); break;
+// case Gestures::SingleTap: NRF_LOG_INFO("Gesture : Single click"); break;
+// case Gestures::DoubleTap: NRF_LOG_INFO("Gesture : Double click"); break;
+// case Gestures::LongPress: NRF_LOG_INFO("Gesture : Long press"); break;
+// default : NRF_LOG_INFO("Unknown"); break;
+// }
}