รหัสสินค้า | C04010 |
หมวดหมู่ | แสง / ตรวจจับวัตถุ / การมองเห็น |
ราคา | 420.00 บาท |
ขนาด | 2 |
ลงสินค้า | 21 พ.ค. 2562 |
อัพเดทล่าสุด | 14 พ.ค. 2568 |
ความพึงพอใจ | ยังไม่มีความคิดเห็น |
คงเหลือ | 0 ชิ้น |
UVM-30A เป็น Sensor สำหรับ Arduino หรือ ไมโครคอนโทรลเลอร์ ชนิดอื่น ที่ใช้วัดแสง Ultra Violet (UV) Sensor UVM-30A ชนิดนี้จะให้ค่า Analog แรงดันออกมาอยู่ในช่วง 0-1 Volt และยังสามารถแทนค่าในตารางค่า UV-Index Sensor UVM-30A ใช้ไฟเลี้ยงแรงดันที่ 3-5 V.
The UVM-30A is a sensor that is used to measure ultraviolet (UV) radiation levels. It can be used with an Arduino microcontroller to detect the UV index in the environment. The sensor has a spectral response that matches the erythemal action spectrum, which is the spectrum of UV radiation that causes sunburn.
It typically outputs a voltage that can be read by an analog input pin of the arduino, which can then be converted to a value of UV index.
To use the UVM-30A with an Arduino, you will need to connect the sensor to an analog input pin on the Arduino board and use the analogRead() function to read the sensor's output voltage. You will also need to use a mathematical formula to convert the voltage value to a UV index value.
ข้อมูล เพิ่มเติม
การเปรียบเทียบค่า UV และ Output
สินค้า 1 ชุดประกอบด้วย
#include <Wire.h>const int UVM_30A_PIN = A0; // Analog input pin for the UVM-30A sensorvoid setup() {Serial.begin(9600);pinMode(UVM_30A_PIN, INPUT);}void loop() {int sensorValue = analogRead(UVM_30A_PIN);float voltage = (sensorValue / 1023.0) * 5.0; // Convert sensor value to voltagefloat uvIndex = voltage * 5; // Approximate conversion formula for UVM-30A sensorSerial.println(uvIndex);delay(1000);}
หน้าที่เข้าชม | 4,510,768 ครั้ง |
ผู้ชมทั้งหมด | 2,466,540 ครั้ง |
ร้านค้าอัพเดท | 6 ก.ย. 2568 |