Added touch sources

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-10-15 12:07:36 +02:00
parent 5c72d046ef
commit b299875ae1
3 changed files with 14 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
#include "src/gui.h"
#include "src/comms.h"
#include "src/rds.h"
#include "src/touch.h"
#define ROTARY_PIN_A 34
#define ROTARY_PIN_B 36

4
src/touch.cpp Normal file
View File

@@ -0,0 +1,4 @@
#include "touch.h"
#include "language.h"
#include "constants.h"
#include "config.h"

9
src/touch.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef TOUCH_H
#define TOUCH_H
#include <Arduino.h>
#include <TFT_eSPI.h>
extern TFT_eSPI tft;
#endif