Skip to content

Instantly share code, notes, and snippets.

@9arduino
9arduino / หรี่ความสว่างหลอดไฟ LED.ino
Last active April 23, 2025 14:06
หรี่ความสว่างหลอดไฟ LED ด้วย Arduino https://www.ab.in.th/b/54
/*
หรี่ความสว่างหลอดไฟ LED ด้วย Arduino
https://www.ab.in.th/b/54
*/
const int analogOutPin = 3; //กำหนดใช้งานขา 3 ของ Arduino
void setup() {
}
@9arduino
9arduino / วัดอุณหภูมิ ด้วย LM35 Arduino.ino
Last active April 23, 2025 14:05
วัดอุณหภูมิ ด้วย LM35 Arduino https://www.ab.in.th/b/62
/*
วัดอุณหภูมิ ด้วย LM35 Arduino
https://www.ab.in.th/b/62
*/
int val;
int tempPin = A5; //ต่อ Sensor ที่ ขา A5
void setup() {
Serial.begin(9600);