描述
技術規格
1.訊號傳輸型式: 數位 (Digital)
2.電壓範圍: 3.0V ~ 5.5V。
3.底板上有預留I/O孔位方便延伸應用。
4.傾斜角度: 2 ~ 5 度
5. 尺寸: 4 x 3 cm
商品內容
§ 傾斜開關模組(目前感測元件為黑色) 1個
§ RJ11 6P4C 25cm 信號傳輸線 1條
程式範例
以傾斜開關模組(連接D2D3腳位) 針對 S4A IO Board/shield 擴充板上的一顆紅色LED(連接D13腳位)進行明滅之測試
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT);
}
void loop(){
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed.
// if it is, the buttonState is HIGH:
if (buttonState == HIGH) {
// turn LED on:
digitalWrite(ledPin, HIGH);
}
else {
// turn LED off:
digitalWrite(ledPin, LOW);
}
}
接線範例
接線方式如果配合S4A IO Board只要把電話接頭(RJ11)接到標示D2D3孔位即可完成連接。