You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
434 B

#include "util.h"
#include "Device.h"
using namespace logid;
Device::Device(std::string path, backend::hidpp::DeviceIndex index) :
_hidpp20 (path, index), _path (path), _index (index)
{
log_printf(DEBUG, "logid::Device created on %s:%d");
}
void Device::sleep()
{
log_printf(INFO, "%s:%d fell asleep.", _path.c_str(), _index);
}
void Device::wakeup()
{
log_printf(INFO, "%s:%d woke up.", _path.c_str(), _index);
}