2025-12-01 23:37:29 +01:00

12 lines
373 B
C

/*******************************************************************
File: gui.h
Date: 09-Sep-2020
Author: Peter Spindler
********************************************************************/
#ifndef _GUI_H_
#define _GUI_H_
void GUI_Init( void );
void GUI_AddButton( uint16_t xPos, uint16_t yPos, char *Text, uint8_t Msg );
extern QueueHandle_t GUIQueue;
#endif