Home Appliances
โมดูลตัวต้านทานปรับค่าได้ Electronic building blocks, rotary potentiometer, analog knob module, rotary encoder module
฿26.00
ราคาจากข้อมูลล่าสุด 09/09/2026 23:53 อาจต่างจากราคาปัจจุบัน
ดูสินค้าที่ร้านค้าเราอาจได้รับค่าตอบแทนเมื่อมีการซื้อผ่านลิงก์นี้ คุณทำรายการซื้อขายกับร้านค้าปลายทางโดยตรง
ข้อมูลสินค้าในที่เดียวอ่านประสบการณ์ก่อนเลือกเช็กเงื่อนไขจากร้านค้า
รู้จักสินค้านี้
โมดูลตัวต้านทานปรับค่าได้ Electronic building blocks, rotary potentiometer, analog knob module, rotary encoder module
Characteristics:
High quality rotary electric appliance, stable performance smooth movement
Output 0 - VCC analog voltage signal
Specification:
1.Size: 26*20mm
2.Weight: 5g
3.Voltage: 3.3V, 5V
4.Port: Analog
5.Resistance: 100K
6.Rotation angle: 270 degrees
7.Platform: Arduino, MCU, ARM, Raspberry Pi
Connect the S port of the rotating potentiometer electronic block to the A0 end of the Arduino plate,and use the following program to read its simulation value.Through the simulation value to set the LED brightness.
const int led = 9; // the pin that the LED is attached to
int brightness = 0; // how bright the LED is
void setup() {
// declare pin 9 to be an output:
pinMode(led, OUTPUT);
}
void loop() {
brightness = analogRead(A0); //use A0 to read the electrical signal
brightness = map(brightness, 0, 1023, 0, 255);
// set the brightness of pin 9:
analogWrite(led, brightness);
}
เรื่องเล่าจากชุมชน
เขียนรีวิว ↗ประสบการณ์จากผู้ใช้
เป็นคนแรกที่เล่าประสบการณ์
ชอบอะไร มีข้อสังเกตตรงไหน? เรื่องเล่าของคุณช่วยให้คนอื่นเลือกได้ดีขึ้น