@@ -390,7 +390,7 @@ int OLLO::read(int devNum, OlloDeviceIndex device_index, ColorIndex sub_index){
390
390
digitalWrite (PORT1_SIG1, mMot_minus );
391
391
digitalWrite (PORT1_SIG2, mMot_plus );
392
392
delay (5 ); // after 20ms, read analog
393
- return (((int )analogRead (PORT1_ADC))/ 4 );
393
+ return (((int )analogRead (PORT1_ADC)));
394
394
395
395
case 2 :
396
396
digitalWrite (PORT2_SIG1, mMot_minus );
@@ -402,13 +402,13 @@ int OLLO::read(int devNum, OlloDeviceIndex device_index, ColorIndex sub_index){
402
402
digitalWrite (PORT3_SIG1, mMot_minus );
403
403
digitalWrite (PORT3_SIG2, mMot_plus );
404
404
delay (5 );
405
- return ((int )analogRead (PORT3_ADC)/ 4 );
405
+ return ((int )analogRead (PORT3_ADC));
406
406
407
407
case 4 :
408
408
digitalWrite (PORT4_SIG1, mMot_minus );
409
409
digitalWrite (PORT4_SIG2, mMot_plus );
410
410
delay (5 );
411
- return ((int )analogRead (PORT4_ADC)/ 4 );
411
+ return ((int )analogRead (PORT4_ADC));
412
412
413
413
default :
414
414
return 0 ;
@@ -501,120 +501,114 @@ void OLLO::write(int devNum, uint8_t leftVal, uint8_t centerVal, uint8_t rightVa
501
501
502
502
}
503
503
504
- void OLLO::setColor (ColorIndex colorIndex){
504
+ void OLLO::setColor (ColorIndex colorIndex) {
505
505
switch (colorIndex){
506
- case RED: // Red
507
- mMot_minus = LOW;
508
- mMot_plus = LOW;
509
- break ;
510
- case GREEN:// Green
511
- mMot_minus = LOW;
512
- mMot_plus = HIGH;
513
- break ;
514
- case BLUE:// Blue
515
- mMot_minus = HIGH;
516
- mMot_plus = LOW;
517
- break ;
518
- default :
519
- break ;
520
- }
521
-
506
+ case RED: // Red
507
+ mMot_minus = HIGH;
508
+ mMot_plus = HIGH;
509
+ break ;
510
+ case GREEN:// Green
511
+ mMot_minus = LOW;
512
+ mMot_plus = HIGH;
513
+ break ;
514
+ case BLUE:// Blue
515
+ mMot_minus = HIGH;
516
+ mMot_plus = LOW;
517
+ break ;
518
+ default :
519
+ break ;
520
+ }
522
521
}
523
522
524
-
525
- int OLLO::detectColor (uint8_t port){
526
-
527
- // int temp_red,temp_green,temp_blue;
528
-
529
- // temp_red = 0;
530
- // temp_green = 0;
531
- // temp_blue= 0;
523
+ int OLLO::detectColor (uint8_t port) {
532
524
int lColor[3 ]= {0 ,0 ,0 };
533
525
int lRed,lGreen,lBlue;
534
- // int bMaxColor, bMinColor;
535
- // bMaxColor=0;
536
- // bMinColor=0;
537
- int bColorResult;
538
526
bColorResult=0 ;
539
527
540
- lRed = this -> read (port, COLOR_SENSOR, RED) ;
541
- // for(i=0; i < 3; i++)
528
+ float fRawY , fRawCb , fRawCr , fR , fG , fB , fGR , fGB , fRB ;
529
+ uint8_t uY, uCb, uCr;
542
530
531
+ lRed = this ->read (port, COLOR_SENSOR, RED);
543
532
lGreen = (this ->read (port, COLOR_SENSOR, GREEN));
544
- // for(i=0; i < 3; i++)
545
-
546
533
lBlue = this ->read (port, COLOR_SENSOR, BLUE);
547
-
548
- if (lRed >= lGreen && lRed >= lBlue)
549
- {
550
- // bMaxColor = 1;
551
- lColor[0 ] = lRed;
552
- }
553
- else if (lGreen >= lRed && lGreen >= lBlue)
554
- {
555
- // bMaxColor = 2;
556
- lColor[0 ] = lGreen;
557
- }
558
-
559
- else if (lBlue >= lRed && lBlue >= lGreen)
560
- {
561
- // bMaxColor = 3;
562
- lColor[0 ] = lBlue;
563
- }
564
- if (lRed <= lGreen && lRed <= lBlue)
565
- {
566
- // bMinColor = 1;
567
- lColor[2 ] = lRed;
568
- }
569
- else if (lGreen <= lRed && lGreen <= lBlue)
570
- {
571
- // bMinColor = 2;
572
- lColor[2 ] = lGreen;
573
- }
574
-
575
- else if (lBlue <= lRed && lBlue <= lGreen)
534
+
535
+ fGR = (float )lGreen / (float )lRed;
536
+ fGB = (float )lGreen / (float )lBlue;
537
+ fRB = (float )lRed / (float )lBlue;
538
+ fR = (float )lRed * 255 / 1023 ;
539
+ fG = (float )lGreen * 255 / 1023 ;
540
+ fB = (float )lBlue * 255 / 1023 ;
541
+
542
+ fRawY = (299 * fR + 587 * fG + 114 * fB ) / 1000 ;
543
+ fRawCb = 0.5643 * (fB - fRawY ) + 128 ;
544
+ fRawCr = 0.7132 * (fR - fRawY ) + 128 ;
545
+
546
+ uY = constrain ((int )fRawY , 0 , 255 );
547
+ uCb = constrain ((int )fRawCb , 0 , 255 );
548
+ uCr = constrain ((int )fRawCr , 0 , 255 );
549
+
550
+ // Color detecting algorithm changed from RGB to YCbCr, 2018-10-18 Will
551
+ if (uCb >= 105 && uCb <= 125 && uCr >= 130 && uCr < 200 && uY <= 100 )
576
552
{
577
- // bMinColor = 3;
578
- lColor[2 ] = lBlue;
553
+ if ((fGR < 0.60 ) && ((fRB > 2.5 ) || (fRB <= 2.5 && fGB < 1.15 ))) {
554
+ bColorResult = 3 ; // red
555
+ } else if ((uCb / uY) < 1.50 ) {
556
+ bColorResult = 6 ; // yellow
557
+ } else {
558
+ bColorResult = 0 ; // unknown
559
+ }
560
+ } else if (uCb >= 110 && uCb <= 135 && uCr >= 105 && uCr < 140 && uY > 40 && uY < 100 ) {
561
+ if (fGR > 0.90 ) {
562
+ if (fGB > 0.80 ) {
563
+ bColorResult = 4 ; // green
564
+ } else {
565
+ bColorResult = 0 ;
566
+ }
567
+ } else {
568
+ bColorResult = 6 ; // yellow
569
+ }
570
+ } else if (uCb >= 130 && uCb <= 160 && uCr >= 110 && uCr < 130 && uY > 20 && uY < 80 ) {
571
+ if (fGR > 1.00 && fGB < 0.80 ) {
572
+ bColorResult = 5 ; // blue
573
+ } else if (fRB > 0.90 ) {
574
+ bColorResult = 2 ; // black
575
+ } else {
576
+ bColorResult = 0 ;
577
+ }
578
+ } else if (uCb >= 70 && uCb <= 115 && uCr >= 130 && uCr < 185 && uY > 80 ) {
579
+ if ((float )(uCb / uY) < 1.50 ) {
580
+ bColorResult = 6 ; // yellow
581
+ } else if ((float )(uCb / uY) > 2.00 ) {
582
+ bColorResult = 2 ; // black
583
+ } else {
584
+ bColorResult = 0 ; // unknown
585
+ }
586
+ } else if (uCb >= 110 && uCb <= 130 && uCr >= 110 && uCr < 140 && uY < 100 ) {
587
+ if (fGR < 1.10 || (fGR >=1.10 && lRed < 90 && lGreen < 100 && lBlue < 90 )) {
588
+ bColorResult = 2 ; // black
589
+ } else if (lGreen >= 100 ) {
590
+ bColorResult = 4 ; // Green
591
+ } else {
592
+ bColorResult = 0 ; // unknown
593
+ }
594
+ } else if (uCb >= 105 && uCb <= 150 && uCr >= 110 && uCr < 165 && uY > 100 ) {
595
+ if (fRB < 1.30 ) {
596
+ bColorResult = 1 ; // white
597
+ } else if (fRB > 1.30 ) {
598
+ bColorResult = 6 ; // yellow
599
+ } else {
600
+ bColorResult = 0 ; // unknown
601
+ }
602
+ } else {
603
+ bColorResult = 0 ; // unknown
579
604
}
580
605
581
- lColor[1 ] = lRed + lGreen + lBlue - lColor[0 ] - lColor[2 ];
582
-
583
- uint32_t RtoB = lRed * 100 / lBlue;
584
- uint32_t GtoB = lGreen * 100 / lBlue;
585
- uint32_t GtoR = lGreen * 100 / lRed;
586
-
587
-
588
- if (lColor[0 ] < 90 || ( lColor[0 ] < 180 &&
589
- RtoB > 50 &&
590
- (GtoB < 110 || GtoR < 130 ) &&
591
- (GtoB + GtoR < 230 ) &&
592
- ((lColor[2 ] * 100 / lColor[0 ]) > 75 )
593
- )
594
- ){// end of if()
595
- bColorResult = 2 ; // blackz
596
- }
597
- else if ((lColor[2 ] > 550 ) || ((lColor[2 ] > 200 ) && (lColor[0 ] > 300 ) && (lColor[2 ] * 100 / lColor[0 ] > 75 ) && (GtoB < 105 )))
598
- bColorResult = 1 ; // white
599
- else if (RtoB > 170 && GtoB > 130 )
600
- bColorResult = 6 ; // yellow
601
- else if (RtoB > 170 && GtoB <= 130 )
602
- bColorResult = 3 ; // red
603
- else if (GtoB > 80 && GtoR >= 100 )// 90 110
604
- bColorResult = 4 ; // green
605
- else if (RtoB < 70 && GtoB <= 85 )
606
- bColorResult = 5 ; // blue
607
- else
608
- bColorResult = 0 ; // unknown
609
-
610
- if (bColorResult == before_color_num){
606
+ if (bColorResult == before_color_num) {
611
607
before_color_cnt++;
612
- if (before_color_cnt >= 10 ){
613
- // before_color_cnt = 0;
608
+ if (before_color_cnt >= 10 ) {
614
609
return bColorResult;
615
610
}
616
- }
617
- else {
611
+ } else {
618
612
before_color_cnt = 0 ;
619
613
}
620
614
0 commit comments