You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
390 B

#ifndef VARS_h
#define VARS_h
#include <Arduino.h>
#include "structs.h"
#include "mySwitches.h"
#ifdef USE_MULTI_THREAD
extern SemaphoreHandle_t semaphoreData;
// Tasks
#ifdef DISPLAY_AT_CORE1
extern TaskHandle_t t_core1_tft;
#endif
#ifdef USE_MAIN_TAB_VIEW
extern lv_obj_t * ui_MainTabView;
#endif
#endif
extern MySwitches *mySwitches;
#endif