You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This allows connection of an Arduino to a Frysky X8R SBUS port to enable additional on-board control, such as LED headlights, sensors and PWM servos, indicator LED's.
It is part of a project to connect our 360° infrared proximity sensor for Quadcopters / UAV to enable autonomous flight.
// Graphical represetentation of Futuba SBUS - also used in FrySky Receivers
2
+
// Example by Colin Bacon
3
+
// ROBOTmaker
4
+
// www.robotmaker.eu
5
+
6
+
//Thanks goes to Futaba for making this SBUS protocol so challenging for everyone. Talk about "why make things simple if we can make things extermely difficult..."
7
+
//To get this to work you'll need to have SBUS conneted receiver that is connected via an Arduiono or FTDI USB thingy to your PC
8
+
//As the SBUS is an inverted signal (yes - to make life even more fun), you'll need to invert the signal using a simple transitor+2 restistors or if you have an FTDI there is a program to invert the signals automatically
myString = myPort.readStringUntil(15); //clean the first buffer
53
+
println(myPort); //Debug to show the port opened
54
+
}
55
+
56
+
voiddraw()
57
+
{
58
+
59
+
//Check for incoming Serial Port Data
60
+
if (myPort.available() ==0){
61
+
62
+
//If no incoming data then count lost packages
63
+
packetErrors++;
64
+
text ("No Signal", 140,20);
65
+
}
66
+
67
+
//When data is comming in then check for a start byte No.1=B11110000 and stop byte No.25=B00000000
68
+
while (myPort.available() >0) {
69
+
inByte = myPort.read(); //Read the Byte that just came in
70
+
71
+
//if it's a new packet and the start byte is not B00001111 (DEC15) then it's an error.
72
+
//Note that the SBUS byte data is MSB, which causes some fun later
73
+
if (idx ==0&& inByte !=0x0F) // error - wait for the start byte
74
+
{
75
+
text("Package Error", 100,100);
76
+
77
+
}
78
+
// if it's a new packet and the start byte is B00001111 (DEC15) then start reading the next 25 bytes.
79
+
else {
80
+
buffer[idx++] = inByte; // fill the buffer with 25 Bytes
81
+
}
82
+
83
+
// if the buffer of 25 Bytes is reached then start to decode
84
+
if (idx ==25)
85
+
{
86
+
idx =0; //reset the buffer count for the next cycle
87
+
if (buffer[24] !=0x00)
88
+
{ //Check that the packet size is 25 bytes long with stop byte b00000000 as the last byte
89
+
errors++; //Count the number of errors
90
+
println(errors); //Print to the error totals to the dashboard
91
+
}
92
+
else
93
+
{ //Start decoding the bits and bytes
94
+
95
+
//Buffer[0] contains the start byte value of 15, so this is ignored
96
+
//The Channels are 11 bits in length, so the bytes need to be split-up
97
+
//To make this conversion more 'interesting' as the bytes arrive as MSB i.e. the highest byte arrives first and the channels are
98
+
//assembled as little endian, which means the 1st 3 bits of the second byte need to comes before the 1st byte.
99
+
100
+
//--------------Channel 1 -------------------
101
+
// The 1st channel = 1st byte + 3 bits from the 2nd byte
102
+
// This channel packet of 11 bits is then read backwards.
103
+
// As the inByte variable is already converted to integers we can move bits along as follows:
104
+
// byte 1 = 00000000 00000011 (say the value is 3)
105
+
// byte 2 = 01100100 (say the value of the 2nd byte is 100)
106
+
// but we are only interested in the last 3 bits which need to be moved infront of the 1st byte,...
107
+
// byte 2 = 01100100 00000000 - ...So shift this byte along left by 8 and it looks like this
108
+
// byte 2 = | (or) the two bytes together and you get this
109
+
// byte 1 = 00000000 00000011
110
+
// byte 2 = 01100100 00000000
111
+
// Channel 1 = 01100100 00000011 <- the intermediate result
112
+
// But we were only interested in the 1st 3 bits of byte 2 so we need strip the 1st 5 bits by and-ing with 2047 (11 bits)
113
+
// & (and) the two together and you get this....
114
+
// Channel1 = 01100100 00000011
115
+
// 2047 = 00000111 11111111
116
+
// Channel1 = 00000100 00000011 <- the final result
117
+
//The bytes are litte Endian which means that to read the full
118
+
119
+
channels[0] = ((buffer[1]|buffer[2]<<8) &0x07FF); //The first Channel
120
+
121
+
//--------------Channel 2 -------------------
122
+
// 2nd Channel = last 5 bit of byte2 and 8 bits of byte 3. Here we need to play around some more.
123
+
// Remove the 1st 3 bits of byte2 by pushing them off to the right
124
+
// byte 2 = 00000000 01100100
125
+
// byte 2 = 00000000 00001100 moved 3 to the right
126
+
// byte 3 = 00000000 01010100 lets say that byte 3 is this
127
+
// byte 3 = 00001010 10000000 moved 5 to the left to get the 5 bytes we need in place (remember this is MSB so bits in byte 3 comes before bits in byte 2)
128
+
// | (or) byte 2 and 3 them together to get the 11 bits in place for channels2
129
+
// byte 2 = 00000000 00001100
130
+
// byte 3 = 00001010 10000000
131
+
// Channel2 = 00001010 10001100 < - result of| (or-ing) them together
132
+
// again we were only interested in 11 bits so strip the package by and-ing with 2047 (11 bits)
133
+
// & (and) the two together and you get this....
134
+
// Channel2 = 00001010 10001100 < - interim result of| (or-ing) them together
135
+
// 2047 = 00000111 11111111
136
+
// Channel2 = 00000010 10001100 < - result of & (and-ing) them together
0 commit comments