บทความ

กำลังแสดงโพสต์จาก กันยายน, 2018

สอบแก้

รูปภาพ
Arduino Home Bluetooth Hardware MCU         = Arduino UNO R3 OUTPUT  = relay 4 ch, หลอดไฟ 4 ดวง INPUT      =  HC - 05 Bluetooh Module Software code #include <SoftwareSerial.h>       //การเรียกใช้ไรบรารี้ const int rxPin = 4;                    //กำหนด rxPin = 4 const int txPin = 2;                    //กำหนด txPin = 2 SoftwareSerial mySerial(rxPin, txPin);     //กำหนดขาของ RX และ TX const int Loads[] = {9, 10, 11, 12};      //กำหนดตัวแปลแบบอะเลย์  int state = 0;                                     //กำหนด state = 0 int flag = 0;                                ...

Microcontroller 20

รูปภาพ
วัดไฟด้วย Arduino อุปกรณ์ Arduino UNO 16 x 2 LCD Display 10KΩ POT 100KΩ 10KΩ Connecting Wires Circuit Diagram Code 1 #include "LiquidCrystal.h" LiquidCrystal lcd(2, 3, 4, 5, 6, 7); float voltage = 0.0; float temp=0.0; int analog_value; void setup() {    lcd.begin(16, 2);     lcd.setCursor (0,0);    lcd.print(" Arduino based ");    lcd.setCursor(0,1);     lcd.print("Digital Voltmeter"); delay(2000); } void loop()  {        analog_value = analogRead(A0);    temp = (analog_value * 5.0) / 1024.0;     voltage = temp/(0.0909);    if (voltage < 0.1)     {      voltage=0.0;    }      lcd.clear();     lcd.setCursor(0, 0);     lcd.print("Voltage= ");     lcd.print(voltage);     lcd.set...

Microcontroller 19

รูปภาพ
Robot กินตัง อุปกรณ์ (1) Arduino Nano (1) Distance sensor  (1) Servo Motor Wiring diagram Code ทดสอบการทำงาน ----  แหล่งอ้างอิง  ----

Microcontroller 18

รูปภาพ
NodeMCU Esp8266 เปิดปิดไฟควบคุมผ่าน App มือถือ อุปกรณ์ NodeMCU Esp8266 สายไฟ Relay 4ch แบบ Active LOW จอแสดงผลLCD I2C Code ตัวอย่าง */  การต่อสาย ขา D1       SCL ขา D2       SDA  ขา Vin      VCC ของจอ LCD ขา GND      GND ของจอ LCD ขา Vin      VCC ของ Relay ขา GND      GND ของ Relay ขา D0       IN1 ของ Relay ขา D5       IN2 ของ Relay ขา D6       IN3 ของ Relay ขา D7       IN4 ของ Relay ตัวอย่าง โดย  นาย ชนาธิป คำแหง */ #include < ESP8266WiFi.h > #include < Wire.h >  #include < LiquidCrystal_I2C.h > LiquidCrystal_I2C lcd(0x3f, 16, 02); const char* ssid = "9arduino";       // ชื่อ SSID Wifi const char* password = "1234567890";         // รหัส Password Wifi WiF...

งานปฏิบัติ 19

รูปภาพ
wiring diagram รูปที่ 1 Code 1

งานปฏิบัติ 18

รูปภาพ
wiring diagram รูปที่ 1 Code 1

งานปฏิบัติ 17

รูปภาพ
wiring diagram รูปที่1 Code 1                                                   wiring diagram รูปที่ 2 Code 2 #include <Servo.h> Servo servo; int x,y; void setup()  {   servo.attach(9); } void loop()  {   x = analogRead(A0);   y = map(x,0,1023,0,179);   servo.write(y);   delay(50); } รูปที่ 3 Code 3

งานปฏิบัติ 16

รูปภาพ
wiring diagram รูปที่ 1 Code 1                            wiring diagram รูปที่ 2 Code 2

Microcontroller 17

รูปภาพ
ARDUINO BALANCING ROBOT อุปกรณ์ - (1) Arduino Uno Board - (1) 9V 1250 mA wall-wart - (2) 12V DC motors  - (1) MMA7455 Accelerometer  - (1) Small breadboard Wiring diagram Code ทดสอบการทำงาน #include <Wire.h> //Include the Wire library // wired connections #define HG7881_B_IA 3 // D3 --> Motor B Input A --> MOTOR B + #define HG7881_B_IB 2 // D2 --> Motor B Input B --> MOTOR B - #define HG7881_A_IA 5 // D5 --> Motor A Input A --> MOTOR A + #define HG7881_A_IB 4 // D4 --> Motor A Input B --> MOTOR A - // functional connections #define MOTOR_B_PWM HG7881_B_IA // Motor B PWM Speed #define MOTOR_B_DIR HG7881_B_IB // Motor B Direction #define MOTOR_A_PWM HG7881_A_IA // Motor B PWM Speed #define MOTOR_A_DIR HG7881_A_IB // Motor B Direction /* Accelerometer Info  http://yourduino.com/sunshop2/index.php?l=product_detail&p=391  +5V and GND to Arduino/Yourduino...