Skip to content

Commit

Permalink
Merge pull request #54 from MK16kawai/dev
Browse files Browse the repository at this point in the history
add panel:lt9611 640x480 1024x768 1280x720 552x368 support
  • Loading branch information
Neutree authored Nov 25, 2024
2 parents 4e8d746 + f9b342c commit d97134f
Show file tree
Hide file tree
Showing 8 changed files with 456 additions and 40 deletions.
8 changes: 8 additions & 0 deletions components/3rd_party/lvgl/driver/monitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ void monitor_init(int w, int h)
vres = h;
}

void monitor_rect(int* w, int* h)
{
if (nullptr != w)
*w = hres;
if (nullptr != h)
*h = vres;
}

/**
* Flush a buffer to the marked area
* @param drv pointer to driver where this function belongs
Expand Down
2 changes: 2 additions & 0 deletions components/3rd_party/lvgl/driver/monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ extern "C" {
**********************/
void monitor_init(int w, int h);
void monitor_flush(lv_display_t * disp_drv, const lv_area_t * area, uint8_t * color_p);

void monitor_rect(int* w, int* h);
/**********************
* MACROS
**********************/
Expand Down
178 changes: 160 additions & 18 deletions components/3rd_party/lvgl/driver/mouse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@
#include "maix_lvgl.hpp"
#include "maix_basic.hpp"

#include <fcntl.h>
#include <unistd.h>
#include <linux/input.h>
#include <stdio.h>
#include <stdbool.h>
#include <dirent.h>
#include <sstream>
#include <string>
#include <cstdio>
#include <cstdlib>

#include "monitor.h"

/*********************
* DEFINES
*********************/
Expand All @@ -34,10 +47,144 @@
**********************/

#if CONFIG_LVGL_USE_MOUSE

static int mouse_fd = -1;
// static lv_obj_t * mouse_cursor = nullptr;

bool is_usb_mouse(const std::string& device) {
std::string command = "udevadm info --name=" + device + " 2>/dev/null";
FILE* pipe = ::popen(command.c_str(), "r");
if (!pipe) {
return false;
}

char buffer[128];
std::ostringstream result;
while (::fgets(buffer, sizeof(buffer), pipe) != nullptr) {
result << buffer;
}

::pclose(pipe);

std::string output = result.str();
if (output.find("ID_INPUT_MOUSE=1") != std::string::npos) {
maix::log::info("found usb mouse: %s", device.c_str());
return true;
}
return false;
}

std::string find_usb_mice() {
maix::log::info("%s, %d", __PRETTY_FUNCTION__, __LINE__);
DIR* dir;
struct dirent* ent;

if ((dir = ::opendir("/dev/input")) == nullptr) {
maix::log::error("Could not open /dev/input");
return "";
}

int cnt = 0;
while ((ent = readdir(dir)) != nullptr) {
if (::strncmp(ent->d_name, "event", 5) != 0 && strcmp(ent->d_name, "mice") != 0)
continue;
std::string device_path = "/dev/input/" + std::string(ent->d_name);
// maix::log::info("device: %s", device_path.c_str());
if (is_usb_mouse(device_path))
return device_path;
++cnt;
}
closedir(dir);

maix::log::info("device cnt: %d", cnt);

return "";
}

static void linux_mouse_init(const std::string& device)
{
maix::log::info("linux mouse init");
mouse_fd = ::open(device.c_str(), O_RDONLY | O_NONBLOCK);
if (mouse_fd < 0) {
maix::log::error("Unable to open mouse device: %s, use touchscreen", device.c_str());
return;
}
}

static void linux_mouse_read(lv_indev_t *indev_drv, lv_indev_data_t *data)
{
(void) indev_drv; // Unused

int w, h;
monitor_rect(&w, &h);

static int x = 0, y = 0;
static bool pressed = false;

struct input_event ie;
ssize_t n = read(mouse_fd, &ie, sizeof(struct input_event));

if (n != (ssize_t)sizeof(struct input_event)) {
data->point.x = (lv_coord_t)x;
data->point.y = (lv_coord_t)y;
data->state = pressed ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED;
data->continue_reading = false;
return;
}

if (ie.type == EV_REL) {
if (ie.code == REL_X) {
x += ie.value;
x = (x<0) ? 0 : x;
x = (x>w) ? w : x;
} else if (ie.code == REL_Y) {
y += ie.value;
y = (y<0) ? 0 : y;
y = (y>h) ? h : y;
}
// } else if (ie.code == REL_WHEEL) {
// const int wheel_data = ie.value * (h/10);
// lv_obj_t* child = lv_obj_get_child(lv_scr_act(), 0);
// lv_obj_scroll_by(child, 0, wheel_data, LV_ANIM_ON);
// }
} else if (ie.type == EV_KEY) {
if (ie.code == BTN_LEFT){
pressed = (ie.value == 1);
}
}

data->point.x = (lv_coord_t)x;
data->point.y = (lv_coord_t)y;
data->state = pressed ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED;
data->continue_reading = true;

// maix::log::info("x:%d, y:%d, s: %u", x, y, pressed);
}

static void touch_screen_read(lv_indev_t * indev_drv, lv_indev_data_t * data)
{
(void) indev_drv; /*Unused*/

static int x, y;
static bool pressed, continue_reading;
if(maix::maix_touchscreen->read0(x, y, pressed) == maix::err::ERR_NOT_READY) {
data->point.x = (lv_coord_t)x;
data->point.y = (lv_coord_t)y;
data->state = pressed ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED;
return;
}
continue_reading = maix::maix_touchscreen->available();

data->point.x = (lv_coord_t)x;
data->point.y = (lv_coord_t)y;
data->state = pressed ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED;
data->continue_reading = continue_reading;
}

/**
* Initialize the mouse
*/
void mouse_init(lv_indev_t * indev_drv)
MouseInputDevice mouse_init(lv_indev_t * indev_drv)
{
// maix::thread::Thread t = maix::thread::Thread([](void *args){
// lv_indev_t *indev_drv = (lv_indev_t *)args;
Expand All @@ -49,6 +196,14 @@ void mouse_init(lv_indev_t * indev_drv)
// }
// }, indev_drv);
// t.detach();
const auto usb_mouse_device = find_usb_mice();
if (usb_mouse_device.empty()) {
maix::log::info("type: touchscreen");
return MouseInputDevice::TOUCHSCREEN;
}
maix::log::info("type: usb mouse");
linux_mouse_init(usb_mouse_device);
return MouseInputDevice::USB_MOUSE;
}

/**
Expand All @@ -58,23 +213,10 @@ void mouse_init(lv_indev_t * indev_drv)
*/
void mouse_read(lv_indev_t * indev_drv, lv_indev_data_t * data)
{
(void) indev_drv; /*Unused*/

static int x, y;
static bool pressed, continue_reading;
if(maix::maix_touchscreen->read0(x, y, pressed) == maix::err::ERR_NOT_READY)
{
data->point.x = (lv_coord_t)x;
data->point.y = (lv_coord_t)y;
data->state = pressed ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED;
return;
}
continue_reading = maix::maix_touchscreen->available();

data->point.x = (lv_coord_t)x;
data->point.y = (lv_coord_t)y;
data->state = pressed ? LV_INDEV_STATE_PRESSED : LV_INDEV_STATE_RELEASED;
data->continue_reading = continue_reading;
if (mouse_fd > 0)
linux_mouse_read(indev_drv, data);
else
touch_screen_read(indev_drv, data);
}
#endif
/**********************
Expand Down
8 changes: 7 additions & 1 deletion components/3rd_party/lvgl/driver/mouse.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ extern "C" {
/**********************
* TYPEDEFS
**********************/
enum class MouseInputDevice {
TOUCHSCREEN,
USB_MOUSE,
UNKNOWN
};


/**********************
* GLOBAL PROTOTYPES
Expand All @@ -55,7 +61,7 @@ extern "C" {
/**
* Initialize the mouse
*/
void mouse_init(lv_indev_t * indev_drv);
MouseInputDevice mouse_init(lv_indev_t * indev_drv);

/**
* Get the current position and state of the mouse
Expand Down
Loading

0 comments on commit d97134f

Please sign in to comment.