본문 바로가기

교육 자료/Raduino mini

12. BLE4.0(HM-10) 비행제어

  • 준비물

  • 회로도



  • 소스 코드 다운로드

  • 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#include "raduino_sbus.h"
 
#include "raduino_fc.h"
 
#include <Wire.h>                     // i2C 통신을 위한 라이브러리
 
SBUS sbus(Serial2);
 
FC Flight(Serial1);
 
HardwareSerial &ble=Serial3;
 
 
 
String inputString1 = "";         // a String to hold incoming data
 
boolean stringComplete1 = false;  // whether the string is complete
 
 
 
boolean startFlag = false;
 
 
 
int ledPin = PC13;
 
 
 
// We'll use timer 1
 
HardwareTimer timer(1);
 
 
 
byte RxValue[11];
 
int ChannelValue[4];
 
int error_count = 0;
 
    
 
void setup() {
 
 
 
  // Pause the timer while we're configuring it
 
  timer.pause();
 
 
 
  // Set up period
 
  timer.setPeriod(10000); // in 10 microseconds
 
 
 
  // Set up an interrupt on channel 1
 
  timer.setChannel1Mode(TIMER_OUTPUT_COMPARE);
 
  timer.setCompare(TIMER_CH1, 1);  // Interrupt 1 count after each update
 
  timer.attachCompare1Interrupt(handler_10ms);
 
 
 
  // Refresh the timer's count, prescale, and overflow
 
  timer.refresh();
 
 
 
  // Start the timer counting
 
  timer.resume();
 
      
 
  Flight.begin();
 
  Serial.begin(115200);   
 
  ble.begin(9600);//BT  
 
  
 
  // reserve 200 bytes for the inputString:
 
  inputString1.reserve(200);
 
  
 
  pinMode(LED_BUILTIN, OUTPUT);
 
  digitalWrite(LED_BUILTIN, HIGH);
 
 
 
  delay(100);
 
 
 
  // roll positive right
 
  // pitch positive forward
 
  Flight.Trim(-10,20); //roll: 0.0 , pith: -5.0
 
  Serial.println("Triming...");
 
 
 
  delay(5000);
 
    
 
  // binding.....
 
  Flight.Bind();
 
  Serial.println("binding...");
 
 
 
//     delay(100);
 
 //   Flight.Cali();  
 
 //   Serial.println("Calibration...");
 
}
 
 
 
int bleEvent() 
 
{
 
   int ret = 0;
 
   while (ble.available()) {
 
    char inChar = (char)ble.read();
 
    inputString1 += inChar;
 
    
 
    if (inChar == '\n') {
 
      stringComplete1 = true;      
 
    }
 
   }
 
 
 
  if (stringComplete1) {
 
    if((inputString1[0== 'B')&&(inputString1[1== 'I')&&(inputString1[2== 'N')&&(inputString1[3== 'D'))
 
    {
 
      ret=1//ex_bind
 
    }
 
    else 
 
    {
 
      ParseData();
 
      ret = 2//
 
    }
 
    
 
    Serial.print("ble:");
 
    Serial.print(ret);
 
     
 
    Serial.println(inputString1);
 
    // clear the string:    
 
    inputString1 = "";
 
    stringComplete1 = false;
 
  } 
 
  return ret;    
 
}
 
 
 
void ParseData() { 
 
    inputString1 = inputString1.substring(1,inputString1.length()); 
 
    int index = inputString1.indexOf('!');  
 
    ChannelValue[0= inputString1.substring(index+1,index+5).toInt(); //roll
 
    index = inputString1.indexOf('@'); 
 
    ChannelValue[1= inputString1.substring(index+1,index+5).toInt(); //pitch
 
    index = inputString1.indexOf('#'); 
 
    ChannelValue[2= inputString1.substring(index+1,index+5).toInt(); //yaw
 
    index = inputString1.indexOf('$'); 
 
    ChannelValue[3= inputString1.substring(index+1,index+5).toInt(); //throttle
 
    
 
    if ( ChannelValue[0== 0 && ChannelValue[1== 0 && ChannelValue[2== 0 && ChannelValue[3== 0 ) 
 
    {
 
      error_count++;
 
      Serial.println("wrong data");
 
    }else
 
    {
 
      error_count=0;
 
    }
 
}
 
 
 
void loop() 
 
{
 
  int ret = Flight.Event();
 
  if(ret==1)digitalWrite(LED_BUILTIN,LOW); 
 
  if(ret>0)Serial.println(Flight.retString);
 
   
 
  int event1 = bleEvent();//BT event
 
  if(event1==1){
 
      digitalWrite(LED_BUILTIN,HIGH);
 
      delay(100);
 
      digitalWrite(LED_BUILTIN,LOW);
 
      delay(100);
 
      digitalWrite(LED_BUILTIN,HIGH);
 
      delay(100);
 
      digitalWrite(LED_BUILTIN,LOW);
 
      startFlag = true;
 
      error_count = 0;
 
  }
 
  else if(event1==2){
 
    //debug
 
    for(int i = 0 ; i < 4; i++)
 
    {
 
      Serial.print(ChannelValue[i]); 
 
      Serial.print(",");
 
    } 
 
    Serial.println("");
 
  }   
 
}
 
 
 
void handler_10ms(void) {
 
 
 
   if ( (startFlag == true&& (error_count == 0))Flight.Tx(ChannelValue[0],ChannelValue[1],ChannelValue[2],ChannelValue[3]);
 
 
 
cs



  • 블루투스 조종을 위한 앱 인벤터 사용법 다운로드 


'교육 자료 > Raduino mini' 카테고리의 다른 글

9. 6축 관성센서 + 프로세싱  (0) 2018.10.23
13. 적외선 고도제어  (0) 2018.10.08
11. SBUS 비행제어  (0) 2018.10.08
8. Dot Matrix LED  (0) 2018.10.01
6. SOUND  (0) 2018.10.01