ESP32-WROVER-KIT-LCD-DRIVER/main/Example_Main.c

51 lines
1.1 KiB
C

/* SPI Master example
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "esp_system.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "LCD.h"
/**
* @fn void app_main(void)
* @brief main task
* @param void
* @return void
* @author Hendrik Schutter
* @date 3.11.2020
*/
void app_main(void)
{
printf("Hello World!\n");
iLCD_init();
while(1) {
iLCD_clearFramebuffer(COLOR_RED);
vTaskDelay(1000 / portTICK_RATE_MS);
iLCD_clearFramebuffer(COLOR_GREEN);
vTaskDelay(1000 / portTICK_RATE_MS);
iLCD_clearFramebuffer(COLOR_BLUE);
vTaskDelay(1000 / portTICK_RATE_MS);
iLCD_clearFramebuffer(COLOR_WHITE);
vTaskDelay(1000 / portTICK_RATE_MS);
iLCD_clearFramebuffer(COLOR_BLACK);
vTaskDelay(1000 / portTICK_RATE_MS);
}
printf("end\n");
}