void setup()
{
Serial.begin(9600); // sets the serial port to 9600
}
void loop()
{
val = analogRead(0); // read analog input pin 0
Serial.print(val, DEC); // prints the value read
Serial.print(" "); // prints a space between the numbers
delay(100); // wait 100ms for next reading
}
-----程式碼結束-----作者: playrobot 時間: 2010-8-14 13:07
BASIC Stamp有一個極大的優勢, 就是利用電容電阻的特性, 來處理類比訊號, 這樣可以節省腳位(有時, 不需要這麼多的類比腳), 並且可以節省CPU時間..
關於RCT類比轉數位的方法, 請參考 http://www.parallax.com/Portals/0/Downloads/docs/books/edu/WAMv2.2-CHT-v1.0.pdf
第五章 ... 非常精采 !