SmartLockerTools/Peripheral/DeviceDiscovery.h

26 lines
705 B
C
Raw Normal View History

2024-05-17 10:36:23 +08:00
#ifndef __DEVICEDISCOVERY_H__
#define __DEVICEDISCOVERY_H__
#include <memory>
#include <string>
#include <system_error>
#include <vector>
class DeviceDiscovery {
constexpr static int32_t OtaSpecificWidth = 96;
public:
2024-10-01 23:01:52 +08:00
struct Device;
2024-05-17 10:36:23 +08:00
using Resolution = std::pair<int32_t, int32_t>;
using Resolutions = std::vector<Resolution>;
DeviceDiscovery();
std::shared_ptr<Device> find(const std::string &deviceName, std::error_code &error);
void enterOtaMode(const std::shared_ptr<Device> &device, std::error_code &error);
2024-06-13 15:41:40 +08:00
std::vector<std::string> devices();
2024-05-17 10:36:23 +08:00
protected:
Resolutions deviceResolutions(const std::shared_ptr<Device> &source);
};
#endif // __DEVICEDISCOVERY_H__