This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
หรี่ความสว่างหลอดไฟ LED ด้วย Arduino | |
https://www.ab.in.th/b/54 | |
*/ | |
const int analogOutPin = 3; //กำหนดใช้งานขา 3 ของ Arduino | |
void setup() { | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
วัดอุณหภูมิ ด้วย LM35 Arduino | |
https://www.ab.in.th/b/62 | |
*/ | |
int val; | |
int tempPin = A5; //ต่อ Sensor ที่ ขา A5 | |
void setup() { | |
Serial.begin(9600); |
OlderNewer