-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrovio_cc_lib.cc
3201 lines (2292 loc) · 85.5 KB
/
rovio_cc_lib.cc
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// *****************************************************************************
// Rovio API C++ Class Library : C++ Interface to Rovio Robot API
// Copyright (c) 2011-2013 Toby Breckon, School of Engineering, Cranfield University
// License : GPL - http://www.gnu.org/copyleft/gpl.html
// *****************************************************************************
// ********************* SEE DOCUMENTATION IN HEADER FILE **********************
#include "rovio_cc_lib.h"
// *****************************************************************************
Rovio::Rovio (char* hostname, char* username, char* password)
{
// create the base URL string
if ((strlen(username) > 0) && (strlen(password) > 0))
{
sprintf_s(urlBase, ROVIO_COMMUNICATION_URL_MEMORY_SIZE, "http://%s:%s@%s/", username, password, hostname);
}
else
{
sprintf_s(urlBase, ROVIO_COMMUNICATION_URL_MEMORY_SIZE, "http://%s/", hostname);
}
//setup global hostname
strcpy_s(name, strlen(hostname) + 1, hostname);
// setup CURL object(s)
curlCom = curl_easy_init();
curl_easy_setopt(curlCom, CURLOPT_VERBOSE, 0);
curl_easy_setopt(curlCom, CURLOPT_NOPROGRESS, 1);
curl_easy_setopt(curlCom, CURLOPT_TIMEOUT, ROVIO_COMMUNICATION_TIMEOUT);
curlVid = curl_easy_init();
curl_easy_setopt(curlVid, CURLOPT_VERBOSE, 0);
curl_easy_setopt(curlVid, CURLOPT_NOPROGRESS, 1);
curl_easy_setopt(curlVid, CURLOPT_TIMEOUT, ROVIO_COMMUNICATION_TIMEOUT);
// set modes within object
verboseMode = false;
pathRecordingState = false;
httpVerboseMode = false;
// set pointers to NULL for memory buffer
buffer.memory = NULL;
buffer.size = 0;
// set pointers to NULL for frame buffer
frame.memory = NULL;
frame.size = 0;
frame.inputSaveBuffer = NULL;
frame.inputSaveBufferSize = 0;
// init. the video streaming stuff
#ifdef linux
pthread_mutex_init (&(frame.completed), NULL);
#endif
#ifdef _WIN32
frame.completed = CreateMutex(NULL, FALSE, NULL);
if (frame.completed == NULL)
{
printf("CreateMutex error: %d\n", GetLastError());
}
#endif
streaming = false;
// reset the wheel encoders
resetWheelEncoders();
}
// *****************************************************************************
bool Rovio::isConnected()
{
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot((char *) "") == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
cv::Mat Rovio::getImage(int format)
{
long serverReturnCode; // server return code
cv::Mat imgTmp; // image object
// set up the write to memory buffer
curl_easy_setopt(curlCom,CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// send command (with image data going to memory)
serverReturnCode = sendToRobot((char *) ROVIO_CAMERA_IMAGE_DEFAULT_URL_STEM);
if (verboseMode)
{
printf("\nROVIO: image request : %s response is OK ? : %i (buffer size = %d bytes)\n",
ROVIO_CAMERA_IMAGE_DEFAULT_URL_STEM,
(serverReturnCode == ROVIO_HTTP_RETURN_CODE_ALL_OK), (int) buffer.size);
}
// check the buffer looks like a JPEG image
if ((buffer.size >= ROVIO_JPEG_MIN_SIZE) &&
(buffer.memory[0] & ROVIO_JPEG_SOI_FIRST_BYTE) &&
(buffer.memory[1] & ROVIO_JPEG_SOI_SECOND_BYTE))
{
// decode image (in memory) using OpenCV
imgTmp = cv::imdecode(cv::Mat(1, buffer.size, CV_8UC1, buffer.memory), format);
}
// clean up the buffer and return image
clearBuffer();
return imgTmp;
}
// *****************************************************************************
#ifdef linux
void* ROVIOthreadPasser(void* args)
{
Rovio* pass = (Rovio*) args;
while(pass->streaming)
{
pass->videoStreamServiceThread();
usleep(ROVIO_CAMERA_VIDEO_STREAMING_SERVICE_WAIT_TIME); // assume ~30 fps max.
}
sleep(ROVIO_CAMERA_VIDEO_STREAMING_STOP_WAIT_TIME);
return 0;
}
#endif
#ifdef _WIN32
DWORD ROVIOthreadPasser(LPVOID lpParameter) {
Rovio* pass = (Rovio*) lpParameter;
while(pass->streaming)
{
pass->videoStreamServiceThread();
Sleep(ROVIO_CAMERA_VIDEO_STREAMING_SERVICE_WAIT_TIME); // assume ~30 fps max.
}
sleep(ROVIO_CAMERA_VIDEO_STREAMING_STOP_WAIT_TIME);
return 0;
}
#endif
bool Rovio::startVideoStreaming()
{
// first check if already streaming
if (streaming)
{
return false;
}
streaming = true; // set streaming here (or we get a race condition)
#ifdef linux
if (pthread_create(&(this->videoStreamThread), NULL, ROVIOthreadPasser, (void *) this))
#endif
#ifdef _WIN32
this->videoStreamThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE) ROVIOthreadPasser, (LPVOID) this, 0, NULL);
if (this->videoStreamThread == NULL)
#endif
{
if (verboseMode)
{
printf("ROVIO: video thread could not be created.\n");
}
streaming = false;
return false;
}
else
{
if (verboseMode)
{
printf("ROVIO: video thread created.\n");
}
return true;
}
}
// *****************************************************************************
bool Rovio::stopVideoStreaming()
{
// first check if it has stopped streaming
if (!streaming)
{
return true; // streaming is already stopped so return false
}
streaming = false;
#ifdef linux
if (pthread_cancel(videoStreamThread))
#endif
#ifdef _WIN32
if (TerminateThread(videoStreamThread, 0))
#endif
{
if (verboseMode)
{
printf("ROVIO: video thread could not be stopped.\n");
}
return false;
}
else
{
if (verboseMode)
{
printf("ROVIO: video thread stopped.\n");
}
// clear any frame memory
sleep(ROVIO_CAMERA_VIDEO_STREAMING_STOP_WAIT_TIME);
clearFrame();
#ifdef _WIN32
CloseHandle(this->videoStreamThread);
#endif
return true;
}
}
// *****************************************************************************
void Rovio::videoStreamServiceThread()
{
long serverReturnCode; // server return code
// set up the write to memory buffer
curl_easy_setopt(curlVid,CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryVideoFrameCallback);
curl_easy_setopt(curlVid,CURLOPT_WRITEDATA, (void *) &frame);
serverReturnCode = sendToRobot(curlVid, (char*)ROVIO_CAMERA_VIDEO_URL_STEM);
}
// *****************************************************************************
cv::Mat Rovio::getVideoStreamFrame()
{
cv::Mat returnImageFrame;
// if we are not streaming we return an empty frame
if (!streaming)
{
return returnImageFrame;
}
// return a clone so that when this image is used externally the
// effects of it being updated internally are not felt outside the Rovio object
#ifdef linux
pthread_mutex_lock( &(frame.completed));
returnImageFrame = frame.image.clone();
pthread_mutex_unlock( &(frame.completed));
#endif
#ifdef _WIN32
WaitForSingleObject(frame.completed, INFINITE);
returnImageFrame = frame.image.clone();
ReleaseMutex(frame.completed);
#endif
return returnImageFrame;
}
// *****************************************************************************
bool Rovio::rotateRight(int speed, int angle)
{
return manualDrive(ROVIO_ROTATERIGHT20, speed,
(int) floor(((double) angle / 360.0) * 30));
}
bool Rovio::rotateLeft(int speed, int angle)
{
return manualDrive(ROVIO_ROTATELEFT20, speed,
(int) floor(((double) angle / 360.0) * 30));
}
// *****************************************************************************
bool Rovio::manualDrive(int command, int speed)
{
return manualDrive(command, speed, 0);
}
// *****************************************************************************
bool Rovio::manualDrive(int command, int speed, int angle)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
int cgicode;
// check inputs
if (((command < 0) || (command > 18)) || ((speed < 0) || (speed > 10))
|| ((angle < 0) || (angle > 30)))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"rev.cgi?Cmd=nav&action=18&drive=%d&speed=%d&angle=%d", command, speed, angle);
if (verboseMode)
{
printf("\nROVIO: drive command code: %d @ speed : %d w/ angle (approx.) %d\n",
command, speed, (int) (((double) angle / 30.0) * 360));
}
// set up the write to memory buffer
curl_easy_setopt(curlCom,CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
cgicode = getCGIResponse();
clearBuffer();
// update encoders as drive command ws successful
#if ROVIO_WILL_UPDATE_WHEEL_ENCODERS_AFTER_DRIVE_COMMAND
updateWheelEncoders();
#endif
return (cgicode == ROVIO_CGI_RETURN_CODE_ALL_OK);
}
// update encoders anyway (!)
#if ROVIO_WILL_UPDATE_WHEEL_ENCODERS_AFTER_DRIVE_COMMAND
updateWheelEncoders();
#endif
clearBuffer();
return false;
}
// *****************************************************************************
void Rovio::waitUntilComplete(int seconds)
{
int swait;
if (seconds < 0)
{
swait = (int) HUGE;
}
else
{
swait = seconds;
}
for(int i = 0; i < swait; i++)
{
if (this->getNavStatus() != ROVIO_IDLE)
{
if (verboseMode)
{
printf("\nROVIO: busy (path/docking/home) - waiting 1 sec.\n");
}
// in MS Windows this parameter is in milliseconds (but our #def sleep(X)
// deals with this case) - #def sleep(X) Sleep(X * 1000)
// in Linux this parameter is in seconds
sleep(1);
}
else
{
return;
}
}
return;
}
// *****************************************************************************
bool Rovio::setFrameRate(int rate)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// check input
if ((rate < 2) || (rate > 32))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"ChangeFramerate.cgi?Framerate=%d", rate);
if (verboseMode)
{
printf("\nROVIO: frame rate command @ rate : %d\n", rate);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
int Rovio::getFrameRate()
{
int returnValue = -1;
// set up a memory write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// send the command
sendToRobot((char *) "rev.cgi?Cmd=nav&action=1");
// extract information from the buffer
if (buffer.memory)
{
char* ptr = strstr(buffer.memory, "frame_rate=");
if (ptr)
{
ptr += strlen("frame_rate=");
if (ptr < (buffer.memory + buffer.size))
{
sscanf_s(ptr, "%d|", &returnValue);
}
}
}
if (verboseMode)
{
printf("ROVIO: Frame rate returned : %d\n", returnValue);
}
// reset buffer
clearBuffer();
return returnValue;
}
// *****************************************************************************
bool Rovio::setBrightness(int level)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// check input
if ((level < 0) || (level > 6))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"ChangeBrightness.cgi?Brightness=%d", level);
if (verboseMode)
{
printf("\nROVIO: brightness command @ level : %d\n", level);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
bool Rovio::setContrast(int level)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// check input
if ((level < 0) || (level > 255))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"debug.cgi?action=write_i2c&address=0x56&value=0x%02x", level);
if (verboseMode)
{
printf("\nROVIO: contrast command @ level : %d\n", level);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
bool Rovio::setResolution(int res)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// check input
if ((res < 0) || (res > 3))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"ChangeResolution.cgi?ResType=%d", res);
if (verboseMode)
{
printf("\nROVIO: resolution command @ setting : %d\n", res);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
int Rovio::getResolution()
{
int returnValue = -1;
// set up a memory write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// send the command
sendToRobot((char *) "rev.cgi?Cmd=nav&action=1");
// extract information from the buffer
if (buffer.memory)
{
char* ptr = strstr(buffer.memory, "resolution=");
if (ptr)
{
ptr += strlen("resolution=");
if (ptr < (buffer.memory + buffer.size))
{
sscanf_s(ptr, "%d|", &returnValue);
}
}
}
if (verboseMode)
{
printf("ROVIO: Camera resolution returned : %d\n", returnValue);
}
// reset buffer
clearBuffer();
return returnValue;
}
// *****************************************************************************
bool Rovio::setCompressionQuality(int level)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// check input
if ((level < 0) || (level > 2))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"ChangeCompressRatio.cgi?Ratio=%d", level);
if (verboseMode)
{
printf("\nROVIO: compression command @ setting : %d\n", level);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
bool Rovio::setSensorFrequencyCompensation(int level)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// check input
if ((level != 0) && (level != 50) && (level != 60))
return false;
// construct command
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"SetCamera.cgi?Frequency=%d", level);
if (verboseMode)
{
printf("ROVIO: frequency command @ setting : %d\n", level);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
int Rovio::getSensorFrequencyCompensation()
{
int setting = - 1;
// set up a memory write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// send the command
sendToRobot((char *) "GetCamera.cgi");
// extract frequency information from the buffer
if (buffer.memory)
{
char* ptr = strstr(buffer.memory, "Frequency = ");
if (ptr)
{
ptr += strlen("Frequency = ");
if (ptr < (buffer.memory + buffer.size))
{
sscanf_s(ptr, "%d\n", &setting);
}
}
}
if (verboseMode)
{
printf("ROVIO: frequency get command returned : %d\n", setting);
}
// reset buffer
clearBuffer();
return setting;
}
// *****************************************************************************
bool Rovio::setAGC(bool state)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
// if AGC on / off consturct command
// sets AGC ceiling using http://.../debug.cgi?action=write_i2c&address=0x14&value=0xn8
// where last n = 0,1,2,....,6 (default appears to be when n=1)
if (state)
{
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE, "/debug.cgi?action=write_i2c&address=0x14&value=0x68");
} else {
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE, "/debug.cgi?action=write_i2c&address=0x14&value=0x18");
}
if (verboseMode)
{
printf("ROVIO: AGC command @ setting : %d\n", state);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
bool Rovio::setAWB(bool state)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
unsigned char setting = 0;
// first get current setting
// set up a memory write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// send the command
sendToRobot((char *) "debug.cgi?action=read_i2c&address=0x13");
// extract frequency information from the buffer
if (buffer.memory)
{
char* ptr = strstr(buffer.memory, "read_i2c = 00000013=");
if (ptr)
{
// N.B. returned string is of format
// read_i2c = 00000013=000000f4
ptr += strlen("read_i2c = 00000013=0000");
if (ptr < (buffer.memory + buffer.size))
{
sscanf_s(ptr, "%x\n", &setting);
}
}
if (verboseMode)
{
printf("ROVIO: AWB setting from robot : %d\n", getBitN(setting, 1));
}
}
// reset buffer
clearBuffer();
// if AWB on / off construct command
if (state)
{
setting |= (1 << 1); // set bit 2, i.e. index 1
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x13&value=0x%x", setting);
} else {
setting &= ~(1 << 1); // clear bit 2, i.e. index 1
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x13&value=0x%x", setting);
}
if (verboseMode)
{
printf("ROVIO: AWB command @ setting : %d\n", state);
}
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// if return code is zero, then all OK
if (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK)
{
return true;
}
return false;
}
// *****************************************************************************
bool Rovio::setAWBGain(unsigned char R, unsigned char G, unsigned char B, bool reset)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
bool r,g,b; // return values
// set up a NULL write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, NULLWriteFunction);
// set AWB Gains
if (reset)
{
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x01&value=0x%x", ROVIO_IMAGE_DEFAULT_AWB_GAIN_B);
b = (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK);
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x02&value=0x%x", ROVIO_IMAGE_DEFAULT_AWB_GAIN_R);
r = (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK);
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x02&value=0x%x", ROVIO_IMAGE_DEFAULT_AWB_GAIN_G);
g = (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK);
} else {
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x01&value=0x%x", B);
b = (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK);
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x02&value=0x%x", R);
r = (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK);
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x02&value=0x%x", G);
g = (sendToRobot(commandStringStem) == ROVIO_HTTP_RETURN_CODE_ALL_OK);
}
if (verboseMode)
{
printf("ROVIO: AWB Gain command @ setting : %d %d %d reset = %i\n", R, G, B, reset);
}
// if return code is zero, then all OK
return (r && b && g);
}
// *****************************************************************************
bool Rovio::setAEC(bool state)
{
char commandStringStem[ROVIO_COMMUNICATION_URL_MEMORY_SIZE];
unsigned char setting = 0;
// first get current setting
// set up a memory write function
curl_easy_setopt(curlCom, CURLOPT_WRITEFUNCTION, ROVIO_CURL_WriteMemoryCallback);
curl_easy_setopt(curlCom,CURLOPT_WRITEDATA, (void *) &buffer);
// send the command
sendToRobot((char *) "debug.cgi?action=read_i2c&address=0x13");
// extract frequency information from the buffer
if (buffer.memory)
{
char* ptr = strstr(buffer.memory, "read_i2c = 00000013=");
if (ptr)
{
// N.B. returned string is of format
// read_i2c = 00000013=000000f4
ptr += strlen("read_i2c = 00000013=0000");
if (ptr < (buffer.memory + buffer.size))
{
sscanf_s(ptr, "%x\n", &setting);
}
}
if (verboseMode)
{
printf("ROVIO: AEC setting from robot : %d\n", getBitN(setting, 0));
}
}
// reset buffer
clearBuffer();
// if AEC on / off construct command
if (state)
{
setting |= (1 << 1); // set bit 1, i.e. index 0
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x13&value=0x%x", setting);
} else {
setting &= ~(1 << 1); // clear bit 1, i.e. index 0
sprintf_s(commandStringStem, ROVIO_COMMUNICATION_URL_MEMORY_SIZE,
"/debug.cgi?action=write_i2c&address=0x13&value=0x%x", setting);
}