Sorry to miss that. I have replaced the .rar and added a readme with it.Nice to see my code is in demand. Sad to see the credits are lost.Here's a driver & example code for ILI9341 using the adafruit library.
Sincere apologies, Nilay
Sorry to miss that. I have replaced the .rar and added a readme with it.Nice to see my code is in demand. Sad to see the credits are lost.Here's a driver & example code for ILI9341 using the adafruit library.
Hi Rudi,
Code: Select all
task_t coffeeTask()
{
while(atWork){
if(!xStreamBufferIsEmpty(mug)){
coffeeDrink(mug);
} else {
xTaskCreate(sBrew, "brew", 9000, &mug, 1, NULL);
xSemaphoreTake(sCoffeeRdy, portMAX_DELAY);
}
}
vTaskDelete(NULL);
}I have tried to "make" this and I get the following error.It's based on the esp-idf official sdk, and you can directly run a make flash in the example folder attached with this reply. It's yet to be merged, hence the attachment.
Attachments
ili9341_ui.rar
(100.45 KiB) Downloaded 152 times
FWIW, I've gathered Sermus' LCD "HVAC" demo - as modified here for the ESP32 - into a repo. I forked Sermus' original repo and applied and credited the changes made by Rudi, Nilay, and myself (to get it to work).
This has NOT been updated to work with the latest toolchain (it currently works with the pre-2017-01-09 esp-idf and toolchain).
https://github.com/MartyMacGyver/ESP32_Adafruit_ILI9341
Users browsing this forum: No registered users and 2 guests