2024-11-28 21:42:18 +01:00

13 lines
173 B
C++

#pragma once
#include <string>
#include <cstdint>
namespace tt::app::i2cscanner {
std::string getAddressText(uint8_t address);
std::string getPortNamesForDropdown();
}