描述
技術規格
1.訊號傳輸型式: 類比 (Analog)
2.電壓範圍:3.0V ~ 5.5V。
3.感測亮度範圍: 1 ~ 5000 Lux
3.工作溫度範圍:-40℃ ~ 85℃
4.模組尺寸:40 x 30 mm
商品內容
- TEMT6000環境光源感測模組 1個
- RJ11 6P4C 25cm 信號線 1條
程式範例
在此範例配合S4A IO Board 做簡單實驗。
int temt6000Pin = A1;
void setup() {
Serial.begin(9600);
}
void loop() {
int value = analogRead(temt6000Pin);
Serial.println(value);
delay(100); //only here to slow down the output so it is easier to read
}