尺寸:85.3*53.6*23.2CM
重量:30.8g
我们将通过串口观察遥感实验数据X接到arduino的A0口 Y接到A1口 电源和地对应接上5V和地。
该遥感扩展板子上面还有四个按键,D3对应接在3号数字脚,D4对应接在4号数字引脚,D5对应接在5号数字脚,D6对应接在6号数字脚。另外的一个小按键为复位按键。
PS2摇杆一般可以用来控制小车等等,其构造主要就是两个10K的电位器,还有一个按键开关。五个端口分别为VCC,X,Button,Y,GND。
我们将通过串口观察遥感实验数据X接到arduino的A0口 Y接到A1口 电源和地对应接上5V和地。
该遥感扩展板子上面还有四个按键,D3对应接在3号数字脚,D4对应接在4号数字引脚,D5对应接在5号数字脚,D6对应接在6号数字脚。另外的一个小按键为复位按键。
例程一:
void setup() {
Serial.begin(9600);
// put your setup code here, to run once:
}
void loop() {
int x=analogRead(0);
int y=analogRead(1);
Serial.print(x);
Serial.print(",");
Serial.println(y);
delay(100);
// put your main code here, to run repeatedly:
}
例程二:
int i,anjian;
void setup() {
Serial.begin(9600);
for(i=3;i<7;i++)
{
pinMode(i,INPUT);
digitalWrite(i,HIGH);
}
// put your setup code here, to run once:
}
void loop() {
int x=analogRead(0);
int y=analogRead(1);
Serial.print(x);
Serial.print(",");
Serial.println(y);
for(i=3;i<7;i++)
{
anjian=digitalRead(i) ;
if(anjian==LOW)
{Serial.println(i);}
delay(100);
}
delay(100);
// put your main code here, to run repeatedly:
}