It is almost essential that it is in the front; it would be probably hundreds of times harder to program if it's in the back! If it's in the front, all you have to do is keep it over the line. I won't even begin to explain what you'd have to do to keep the robot following the line if the sensor was at the back (compared to the direction of travel).roboteer wrote:Does anyone know if it matters which way the color sensor is facing? Does it matter if it is put at the front of the robot versus the rear of the robot?
Bricxcc, NXC, Color Sensor, NXT 2.0
-
- Posts: 1818
- Joined: 02 Oct 2010, 02:19
- Location: Michigan USA
- Contact:
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
Matt
http://mattallen37.wordpress.com/
I'm all for gun control... that's why I use both hands when shooting
http://mattallen37.wordpress.com/
I'm all for gun control... that's why I use both hands when shooting
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
By design, you read full color values from a special area in the Input module's IOMap structure and with a special system call function. If you have the sensor configured as a full color device then you only get values via this system call function or in the SensorValue field which simply returns the color number. If you switch the sensor into a single color device using SetSensorColorRed, SetSensorColorBlue, or SetSensorColorGreen then it acts like the old light sensor and does not update the full color IOMap fields so you can't read any useful values via the special system call function (which ReadSensorColorRaw uses under the hood). Instead you get sensor values from the same functions that you would use for the old light sensor, aka SensorValue, SensorRaw, etc... That is simply the way that the NXT firmware is designed to work with the new color sensor. You use it as a light sensor in single color mode (red, green, or blue) or you use it as a full color sensor and depending on which mode you choose to use you access the values returned by the sensor differently (as you have found through testing and as described above).ggrinton wrote: I found that if I use SetSensorColorFull(S3); then I can read the light value with code likebut if I try to use light = SensorRaw(S3); I don't get any value returned.
- int light, RawColor[];
ReadSensorColorRaw(S3, RawColor);
light = RawColor[3];
On the other hand, if I use SetSensorColorRed(S3); then to get a meaningful light value, I need to use light = SensorRaw(S3); and I don't get any meaningful values from ReadSensorColorRaw.
Here are a couple examples of using the new color sensor:
http://www.philohome.com/fbs/fbs.nxc
http://tiltedtwister.com/download/tt2/tiltedtwister.nxc
https://sourceforge.net/apps/phpbb/mind ... rRed#p1532
Searching these forums for "SetSensorColorFull" or "SetSensorColorRed" will return a number of threads where this device has been discussed a lot in the past.
John Hansen
Multi-platform LEGO MINDSTORMS programming
http://bricxcc.sourceforge.net/
http://bricxcc.sourceforge.net/
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
Thanks for the helpful information, John, and for the pointers.
-
- Posts: 2
- Joined: 16 Mar 2012, 06:26
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
Hey, James here. When using the switch statement to decide what to do when the color sensor detects blue, it performs the same action over and over, even when I use break. Here is my code and I would appreciate any help:
Code: Select all
ClearScreen();
switch(Color)
{
case 2:
TextOut(0, LCD_LINE3, "BLUE- Let's park!");
Off(OUT_BC);
Wait(2500);
OnRev(OUT_B, turn);
OnFwd(OUT_C, turn);
Wait(angle);
Off(OUT_BC);
OnRev(OUT_BC, full);
Wait(1500);
Off(OUT_BC);
Wait(5000);
OnFwd(OUT_BC, full);
Wait(1500);
Off(OUT_BC);
OnFwd(OUT_B, turn);
OnRev(OUT_C, turn);
Wait(angle);
Off(OUT_BC);
ClearSensor(IN_3);
break;
default:
break;
}
OnRev(OUT_BC, full);
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
I can't tell from the partial snippet of code that you posted what is going on. You should try to avoid "magic numbers" in your source code, such as case 2: or Wait(2500). #define a meaningful name for your numbers at the start of your code or use one that already exists, such as the ones defined on this page:
http://bricxcc.sourceforge.net/nbc/nxcd ... tants.html
Can you post a bit of code that shows the switch statement in context?
John Hansen
http://bricxcc.sourceforge.net/nbc/nxcd ... tants.html
Can you post a bit of code that shows the switch statement in context?
John Hansen
Multi-platform LEGO MINDSTORMS programming
http://bricxcc.sourceforge.net/
http://bricxcc.sourceforge.net/
-
- Posts: 2
- Joined: 16 Mar 2012, 06:26
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
Yes and thank you for the first advice. Much appreciated! Here is the whole script:
Code: Select all
//setting turn speed, full speed, and rotate time.
#define turn 100
#define full 45
#define angle 400
#define INPUT_BLUECOLOR 2
sub color_check()
{
//Turn on color sensor in sensor input 3
SetSensorColorFull(IN_3);
while(true)
{
int Color;
//If the color sensor picks up blue, assign that value to color
if(Sensor(IN_3) == INPUT_BLUECOLOR) Color = INPUT_BLUECOLOR;
{
//clear to lcd screen on the physical robot
ClearScreen();
switch(Color)
{
//case 2 (two is the default number given to blue) which tells the robot to park when it senses blue.
case 2:
TextOut(0, LCD_LINE3, "BLUE- Let's park!");
Off(OUT_BC);
Wait(2500);
OnRev(OUT_B, turn);
OnFwd(OUT_C, turn);
Wait(angle);
Off(OUT_BC);
OnRev(OUT_BC, full);
Wait(1500);
Off(OUT_BC);
Wait(5000);
OnFwd(OUT_BC, full);
Wait(1500);
Off(OUT_BC);
OnFwd(OUT_B, turn);
OnRev(OUT_C, turn);
Wait(angle);
Off(OUT_BC);
ClearSensor(IN_3);
break;
default:
break;
}
OnRev(OUT_BC, full);
}
}
}
task main()
{
OnRev(OUT_BC, full);
while(true)
{
color_check();
}
}
Re: Bricxcc, NXC, Color Sensor, NXT 2.0
Here's what I would use:
John Hansen
Code: Select all
//setting turn speed, full speed, and rotate time.
#define turn 100
#define full 45
#define angle 400
// don't redefine INPUT_BLUECOLOR
void color_check() // use void instead of sub (which is inherited from NQC but frowned upon for NXC use)
{
while(true)
{
int Color;
// assign sensor value to Color (regardless of its value)
Color = Sensor(IN_3);
// //If the color sensor picks up blue, assign that value to color
// if(Sensor(IN_3) == INPUT_BLUECOLOR)
// Color = INPUT_BLUECOLOR;
// clear the lcd screen on the physical robot
ClearScreen();
switch(Color)
{
//case 2 (two is the default number given to blue) which tells the robot to park when it senses blue.
case INPUT_BLUECOLOR:
TextOut(0, LCD_LINE3, "BLUE- Let's park!");
Off(OUT_BC);
Wait(2500);
OnRev(OUT_B, turn);
OnFwd(OUT_C, turn);
Wait(angle);
Off(OUT_BC);
OnRev(OUT_BC, full);
Wait(1500);
Off(OUT_BC);
Wait(5000);
OnFwd(OUT_BC, full);
Wait(1500);
Off(OUT_BC);
OnFwd(OUT_B, turn);
OnRev(OUT_C, turn);
Wait(angle);
Off(OUT_BC);
// ClearSensor(IN_3); // no reason for this
break;
default:
break;
}
OnRev(OUT_BC, full);
}
}
task main()
{
//Turn on color sensor in sensor input 3 (only do this one time in your program)
SetSensorColorFull(IN_3);
OnRev(OUT_BC, full);
while(true)
{
color_check();
}
}
Multi-platform LEGO MINDSTORMS programming
http://bricxcc.sourceforge.net/
http://bricxcc.sourceforge.net/
Who is online
Users browsing this forum: Semrush [Bot] and 0 guests