{"id":17041561,"url":"https://github.com/utkumaden/esp-idf-lcd","last_synced_at":"2026-04-27T08:31:32.120Z","repository":{"id":189526659,"uuid":"527536570","full_name":"utkumaden/esp-idf-lcd","owner":"utkumaden","description":"Generic LCD Driver as an ESP32 Component","archived":false,"fork":false,"pushed_at":"2023-03-23T08:39:11.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-02T04:14:42.669Z","etag":null,"topics":["character-lcd","display","driver","esp-idf","esp32","esp32-idf","lcd","lcd16x2"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/utkumaden.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-08-22T11:35:03.000Z","updated_at":"2025-03-05T15:07:52.000Z","dependencies_parsed_at":"2023-08-20T16:40:04.951Z","dependency_job_id":null,"html_url":"https://github.com/utkumaden/esp-idf-lcd","commit_stats":null,"previous_names":["utkumaden/esp-idf-lcd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/utkumaden/esp-idf-lcd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkumaden%2Fesp-idf-lcd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkumaden%2Fesp-idf-lcd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkumaden%2Fesp-idf-lcd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkumaden%2Fesp-idf-lcd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/utkumaden","download_url":"https://codeload.github.com/utkumaden/esp-idf-lcd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/utkumaden%2Fesp-idf-lcd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32329462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["character-lcd","display","driver","esp-idf","esp32","esp32-idf","lcd","lcd16x2"],"created_at":"2024-10-14T09:12:44.654Z","updated_at":"2026-04-27T08:31:32.088Z","avatar_url":"https://github.com/utkumaden.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"Generic LCD driver as a ESP32 Component\n=======================================\n\nThis is a generic LCD driver wrapped as a ESP32 component. You are free to use\nthe driver component as you wish as long as you follow the license agreement in\n[LICENSE.md](LICENSE.md).\n\nUsage Example\n-------------\n\n```c\n\nint lcdBusIO(lcdDriver_t *driver, bool rw, bool rs, bool en, uint8_t data)\n{\n    // Implement for your own setup.\n}\n\nint lcdDelay(lcdDriver_t *driver, uint32_t delay)\n{\n    // Implement for your own setup.\n    return usleep((useconds_t)delay);\n}\n\nvoid app_main(void)\n{\n    lcdDriver_t lcd = {\n        .userData = NULL,\n        .dimensions = {16, 2},\n        .writeOnly = true,\n        .fourBits = true\n    };\n\n    // Do GPIO initialization.\n\n    // Reset GPIO pins to their default state.\n    lcdBusIO(\u0026lcd, false, false, false, 0xFF);\n\n    lcdLoadDefaultTiming(\u0026lcd);     // Load default LCD timings.\n    lcdInit(\u0026lcd);                  // Initialize the LCD and driver.\n\n    lcdDirection(\u0026lcd, true);                   // Set the direction to forward.\n    lcdSetDisplay(\u0026lcd, true, false, false);    // Enable display.\n    lcdHome(\u0026lcd);                              // Home the LCD cursor.\n\n    lcdPutZString(\u0026driver, \"Hello World!\");\n}\n```\n\nTO-DO\n-----\n* Implement read-write mode.\n* Implement 8-bit mode.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkumaden%2Fesp-idf-lcd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Futkumaden%2Fesp-idf-lcd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Futkumaden%2Fesp-idf-lcd/lists"}