特價

傾斜開關模組

NT$95

傾斜開關模組

此模組開關數位輸入模組,利用鋼球的特性,通過重力作用使鋼球向低處滾動,從而使開關閉合或斷開,因此也可以作為簡單的傾角感測器使用。鋼球開關數位輸入模組,與Arduino專用感測器擴展板結合使用,能夠實現非常有趣的互動作品,比使用水銀開關更加安全。

描述

技術規格

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孔位即可完成連接。