Skip to content

Commit 08624c0

Browse files
committed
expose ce() in python wrapper
1 parent 81c315a commit 08624c0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pyRF24/pyRF24.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ BOOST_PYTHON_MODULE(RF24)
318318
.def("available_pipe", &available_wrap) // needed to rename this method as python does not allow such overloading
319319
.def("begin", (bool(::RF24::*)(void))(&::RF24::begin))
320320
.def("begin", &begin_with_pins)
321+
.def("ce", &::RF24::ce)
321322
.def("closeReadingPipe", &RF24::closeReadingPipe)
322323
.def("disableCRC", &RF24::disableCRC)
323324
.def("enableAckPayload", &RF24::enableAckPayload)

0 commit comments

Comments
 (0)