sbus icon indicating copy to clipboard operation
sbus copied to clipboard

Arduino and CMake library for communicating with SBUS receivers and servos.

Results 11 sbus issues
Sort by recently updated
recently updated
newest added

#include "sbus.h" bfs::SbusTx sbus_tx(&Serial,D0,D1,1); bfs::SbusData data; void setup() { Serial.begin(115200); while (!Serial) {} sbus_tx.Begin(); } void loop () { sbus_tx.data(data); /* Write the data to the servos */ sbus_tx.Write(); }...