mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-18 09:25:06 +00:00
11 lines
266 B
C++
11 lines
266 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
#include <Tactility/hal/power/PowerDevice.h>
|
|
#include <driver/gpio.h>
|
|
|
|
constexpr auto THMI_S3_POWEREN_GPIO = GPIO_NUM_10;
|
|
constexpr auto THMI_S3_POWERON_GPIO = GPIO_NUM_14;
|
|
|
|
std::shared_ptr<tt::hal::power::PowerDevice> createPower();
|