esp-ena/components/interface/interface.c

75 lines
1.9 KiB
C
Raw Normal View History

// Copyright 2020 Lukas Haubaum
//
// Licensed under the GNU Affero General Public License, Version 3;
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// https://www.gnu.org/licenses/agpl-3.0.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
2020-08-16 16:40:05 +02:00
#include "driver/gpio.h"
#include "esp_log.h"
#include "display.h"
#include "display-gfx.h"
2020-08-16 16:40:05 +02:00
#include "interface.h"
static interface_command_callback command_callbacks[INTERFACE_COMMANDS_SIZE];
2020-08-16 16:40:05 +02:00
static interface_display_function current_display_function;
void interface_register_command_callback(interface_command_t command, interface_command_callback callback)
{
command_callbacks[command] = callback;
}
2020-08-16 16:40:05 +02:00
void interface_set_display_function(interface_display_function display_function)
{
display_clear();
2020-08-16 16:40:05 +02:00
current_display_function = display_function;
}
void interface_execute_command(interface_command_t command)
{
if (command_callbacks[command] != NULL)
2020-08-16 16:40:05 +02:00
{
display_clear();
(*command_callbacks[command])();
2020-08-16 16:40:05 +02:00
}
}
2020-08-16 16:40:05 +02:00
void interface_display_task(void *pvParameter)
{
2020-08-16 16:40:05 +02:00
while (1)
{
if (current_display_function != NULL)
{
(*current_display_function)();
}
vTaskDelay(500 / portTICK_PERIOD_MS);
}
}
2020-08-16 16:40:05 +02:00
void interface_start(void)
{
2020-08-16 16:40:05 +02:00
xTaskCreate(&interface_display_task, "interface_display_task", 4096, NULL, 5, NULL);
// init label
interface_init_label();
display_start();
display_clear();
2020-08-16 16:40:05 +02:00
for (int i = 0; i < 8; i++)
{
display_data(display_gfx_logo[i], 64, i, 32, false);
2020-08-16 16:40:05 +02:00
}
}