Bindings: Python: Add get_tc10_status

pull/64/head^2
Kyle Schwarz 2024-11-05 14:30:53 -05:00
parent b9cfa85009
commit 10d2625cb6
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ void init_device(pybind11::module_& m) {
.def("supports_tc10", &Device::supportsTC10)
.def("request_tc10_wake", &Device::requestTC10Wake)
.def("request_tc10_sleep", &Device::requestTC10Sleep)
.def("get_tc10_status", &Device::getTC10Status)
.def("__repr__", &Device::describe);
}