#include "freertos/task.h"
#include "driver/gpio.h"
+ /* custom headers we made!!*/
+ #include "task_imu.h"
#include "pins.h"
#include "task_lcd.h"
+#include "task_button.h"
gpio_dump_io_configuration(stdout, (1ULL << PIN_VIBRATOR) | (1ULL << PIN_BUTTON_RED));
- lcd_task();
-
+ /* initialize the buttons */
+ gt_btn_setup();
+
+ /* start the main gui thread which starts all else */
+ // lcd_task();
+ task_imu_all(NULL);
/*
for (int i = 10; i >= 0; i--) {
printf("Restarting in %d seconds...\n", i);