Subject:
|
Il SENSOR_LIGHT ancora non mi funziona!!!
|
Newsgroups:
|
lugnet.loc.it
|
Date:
|
Tue, 16 Jan 2001 12:39:57 GMT
|
Viewed:
|
361 times
|
| |
| |
Ciao
Qualcuno puo' spiegarmi perche' con questo programma, una volta lanciato, il
led rosso del SENSOR_LIGHT si spegne?
Se levo la riga
SetSensorType(SENSOR_2, SENSOR_MODE_RAW);
funziona tutto perfettamente ma, naturalmente, non posso usufruire della
modalita' RAW.....
int last;
task send()
{
while (true)
{
SendMessage(0);
Wait(10);
}
}
task check()
{
while (true)
{
last=SENSOR_2;
if (SENSOR_2 > last - 10)
{
OnRev(OUT_C);
Wait(90);
OnFwd(OUT_A+OUT_C);
}
}
}
task main()
{
SetSensorType(SENSOR_2, SENSOR_TYPE_LIGHT);
SetSensorType(SENSOR_2, SENSOR_MODE_RAW);
OnFwd(OUT_A+OUT_C);
start send;
start check;
}
|
|
Message has 1 Reply: | | R: Il SENSOR_LIGHT ancora non mi funziona!!!
|
| ciao Massimiliano credo che sia stata una svista (...) il (...) avresti dovuto usare SetSensorMode non SetSensorType (...) il problema penso sia qui (...) usare SetSensorMode (...) good luck Pietro (24 years ago, 16-Jan-01, to lugnet.loc.it)
|
4 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|