VulcanoLE/headers/VulcanoLE/API/I2C.h

12 lines
123 B
C++

#pragma once
#include <string>
struct I2CDevice {
std::string name;
};
class I2C {
public:
int readDevices();
};