วันเสาร์ที่ 22 ธันวาคม พ.ศ. 2561

งานที่ 12 ตัวอย่างงานที่ใช้โปรแกรม Arduino สปที่ 12

ตัวอย่างงานที่ใช้โปรแกรม Arduino

    Arduino วัดอุณหภูมิและความชื้นด้วย DHT11


ผลการค้นหารูปภาพสำหรับ วงจรarduino พร้อมโค้ด

DHT11 มีทั้งหมดอยู่ ขา คือ
ลำดับ
ขาใช้งาน
1
VCC
DATA
NC
GND
DHT11 จะใช้วิธีการส่งข้อมูลให้กับไมโครคอนโทรลเลอร์ด้วยสายเพียงเส้นเดียวในแบบของดิจิตอลลอจิก
/* IOXhop - www.ioxhop.com */
#include "DHT.h"
#define DHTPIN 2
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
void setup() {
   Serial.begin(9600); 
   Serial.println("DHTxx test!");
   dht.begin();
}
void loop() {
   float h = dht.readHumidity();
   float t = dht.readTemperature();
   float f = dht.readTemperature(true);
   if (isnan(h) || isnan(t) || isnan(f)) {
     Serial.println("Failed to read from DHT sensor!");
   return;
   }

   float hi = dht.computeHeatIndex(f, h);

   Serial.print("Humidity: "); 
   Serial.print(h);
   Serial.print(" %\t");
   Serial.print("Temperature: "); 
   Serial.print(t);
   Serial.print(" *C ");
   Serial.print(f);
   Serial.print(" *F\t");
   Serial.print("Heat index: ");
   Serial.print(hi);
   Serial.println(" *F");  
   delay(2000);
}
อ้างอิง : https://www.ioxhop.com/article/16/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B9%83%E0%B8%8A%E0%B9%89-arduino-%E0%B8%A7%E0%B8%B1%E0%B8%94%E0%B8%AD%E0%B8%B8%E0%B8%93%E0%B8%AB%E0%B8%A0%E0%B8%B9%E0%B8%A1%E0%B8%B4%E0%B9%81%E0%B8%A5%E0%B8%B0%E0%B8%84%E0%B8%A7%E0%B8%B2%E0%B8%A1%E0%B8%8A%E0%B8%B7%E0%B9%89%E0%B8%99%E0%B8%94%E0%B9%89%E0%B8%A7%E0%B8%A2-dht11?fb_comment_id=1076102462486764_1573223679441304

วันอาทิตย์ที่ 9 ธันวาคม พ.ศ. 2561

งานที่ 11 ตัวอย่างงานที่ใช้โปรแกรม Arduino สปที่ 11

ตัวอย่างงานที่ใช้โปรแกรม Arduino


การเขียนโปรแกรมเบื้องต้นกับ Arduino C++ (การรับค่าสัญญาณ Analog)



ตัวอย่าง Code
// select the input pin for the potentiometer
int sensorPin = A3;
 
// select the pin for the LED
int ledPin = 13;
 
// variable from the sensor
int sensorValue = 0;
 
void setup() {
   // declare the ledPin as an OUTPUT:
   pinMode(ledPin, OUTPUT);
   Serial.begin(9600);
}
 
void loop() {
   // read the value from the sensor:
   sensorValue = analogRead(sensorPin);
   //print report:
   Serial.println(sensorValue);
   //call Blinky LED
   Blinky(sensorValue);
}
 
void Blinky(int time) {
   digitalWrite(ledPin, HIGH);
   delay(time);
   digitalWrite(ledPin, LOW);
   delay(time);
}
อ้างอิง : http://www.myarduino.net/article/24/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B9%80%E0%B8%82%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B9%82%E0%B8%9B%E0%B8%A3%E0%B9%81%E0%B8%81%E0%B8%A3%E0%B8%A1%E0%B9%80%E0%B8%9A%E0%B8%B7%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B8%95%E0%B9%89%E0%B8%99%E0%B8%81%E0%B8%B1%E0%B8%9A-arduino-c-%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%A3%E0%B8%B1%E0%B8%9A%E0%B8%84%E0%B9%88%E0%B8%B2%E0%B8%AA%E0%B8%B1%E0%B8%8D%E0%B8%8D%E0%B8%B2%E0%B8%93-analog

งานที่ 10 ตัวอย่างงานที่ใช้โปรแกรม Arduino สปที่ 10

ตัวอย่างงานที่ใช้โปรแกรม Arduino

การเขียนโปรแกรมเบื้องต้นกับ Arduino C++ (การรับค่าจากสวิตซ์)


Code( ถ้ากดปุ่ม  LED จะดับ)
 int buttonPin = 2;     // the number of the pushbutton pin
 int ledPin =  9;      // the number of the LED pin
// variables will change:
int buttonState = 0;         // variable for reading the pushbutton status
void setup() {
  // initialize the LED pin as an output:
Serial.begin(9600);
  pinMode(ledPin, OUTPUT);      
  // initialize the pushbutton pin as an input:
  pinMode(buttonPin, INPUT);     
}
void loop(){
  // read the state of the pushbutton value:
  buttonState = digitalRead(buttonPin);
  // check if the pushbutton is pressed.
  // if it is, the buttonState is HIGH:
  if (buttonState == HIGH) {     
    // turn LED on:    
Serial.println("turn LED on");
    digitalWrite(ledPin, HIGH);  
  } 
  else {
    // turn LED off:
Serial.println("turn LED off");
    digitalWrite(ledPin, LOW); 
  }
}
อ้างอิง http://www.myarduino.net/article/8/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B9%80%E0%B8%82%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B9%82%E0%B8%9B%E0%B8%A3%E0%B9%81%E0%B8%81%E0%B8%A3%E0%B8%A1%E0%B9%80%E0%B8%9A%E0%B8%B7%E0%B9%89%E0%B8%AD%E0%B8%87%E0%B8%95%E0%B9%89%E0%B8%99%E0%B8%81%E0%B8%B1%E0%B8%9A-arduino-c-%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%A3%E0%B8%B1%E0%B8%9A%E0%B8%84%E0%B9%88%E0%B8%B2%E0%B8%88%E0%B8%B2%E0%B8%81%E0%B8%AA%E0%B8%A7%E0%B8%B4%E0%B8%95%E0%B8%8B%E0%B9%8C