mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-22 08:25:06 +00:00
To avoid keeping track of a list that maps board project names to board ids. Because of this change, we don't have to manually edit `boards.cmake` anymore when adding a new board.
9 lines
157 B
C++
9 lines
157 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <Xpt2046Touch.h>
|
|
|
|
extern std::shared_ptr<Xpt2046Touch> touchInstance;
|
|
|
|
std::shared_ptr<Xpt2046Touch> createTouch();
|