วันพุธที่ 11 เมษายน พ.ศ. 2561

MIT APP Inventor received data from Arduino + Bluetooth HC06

Equipment

1. Arduino NANO


คลิ้กดูรายละเอียด Arduino NANO ได้เลย


2.HC-06 Bluetooth module







3.LDR











                                                Wiring

NANO        to         HC-06

D10                             TX
D11                              RX

NANO                      LDR
A0                             A0






CODE


#include<SoftwareSerial.h>
SoftwareSerial mySerial(10,11);//rx,tx
const int LDR=A0;
int xx;
void setup() {
 // Serial.begin(19200);
  mySerial.begin(9600);
 // pinMode(LDR,INPUT);
  
}

void loop()

{

 xx = analogRead(LDR); 
 mySerial.print(xx);

//  Serial.println(xx);
  delay(500);
}



MIT Appication Inventor















ไม่มีความคิดเห็น:

แสดงความคิดเห็น