Lunt I An Laboratory 4
Lunt I An Laboratory 4
Arduino Tutorials
About Me
Tw eet
Like
Share
Search
t opics
android app arduino code do it yourself Extra gadgets hacking gadgets just looking my projects Software
... JZ863 RF Module. Pins assignment from left to right, assuming the module is facing the holder and the antenna is pointing up. 1 = 5+ volts power RED wire 2 = ground BLACK wire
open in browser PRO version
Are you a developer? Try out the HTML to PDF API
pdfcrowd.com
BLACK wire 3 = RX serial data receiving connect it to Arduino TX pin 1 BLUE wire 4 = TX serial data transmitting connect it to Arduino RX pin 0 YELLOW wire 5 = SLE, sleep control command digitalWrite HIGH to sleep, LOW to awake WHITE wire Connect one RF module to Arduino or any compatible board. Treat is as data sending device. Upload the sketch below.
r ec ent ar t ic les
Western Digital My Passport 1TB Intel RST for Cooler Platform Controller Hub (PCH) I Installed a Lincensed ESET NOD32 Antivirus! The Tale of Impulsive Upgrader | From Windows.3x to Windows 8 / 8.1 Bluetooth File Transfer Protocol Version 2 Blocking The Globe Tattoo Ghost Web Icon A Laptop Cooling Pad Test
pdfcrowd.com
r ec ent comment s
tan on Fixing the Slow Arduino IDE | More Than 20 Seconds Delay Aldion on The Huawei Mobile Pocket Wifi E5220 Aldion on The Huawei Mobile Pocket Wifi E5220 admin on Gizduino Mini on Windows 7 and Windows 8 loreen on Gizduino Mini on
const byte awake = 3; void setup () {//void setup begin // initialize serial communication Serial.begin(9600); pinMode(awake,OUTPUT); // awaken the RF module digitalWrite(awake,LOW); }// void setup end void loop () {//void loop start // Send character "a" to RF module pair Serial.println("a");
open in browser PRO version
Are you a developer? Try out the HTML to PDF API
t ags
android arduino
battery camera computer ddwrt
Serial.println("a"); delay(5000); // 5 seconds delay // Send character "b" to RF module pair Serial.println("b"); delay(5000); // 5 seconds delay }//void loop end
drive
huawei internet
Get another Arduino board. Connect the other module using the instructions above. Treat it as data receiving device. Upload the sketch below.
sun cellular
pdfcrowd.com
const byte awake = 3; // a variable for storing data // thrown by the other module int data; void setup(){//void setup start Serial.begin(9600); pinMode(led,OUTPUT); pinMode(awake,OUTPUT); // awaken the RF module digitalWrite(awake,LOW); }// void setup end void loop(){//void loop start if (Serial.available()>0) {//if serial.available start // read what the other RF module // pair is saying data = Serial.read(); // turn the led 13 on if 'a' // turn the led 13 off if 'b' if (data == 'a'){//if data begin digitalWrite(led,HIGH); }// if data end if (data == 'b'){// if data begin digitalWrite(led,LOW); }// if data end }// if serial.available end }// void loop end
open in browser PRO version
Are you a developer? Try out the HTML to PDF API
pdfcrowd.com
RE L A T E D P O S T S
1. Using Tilt Sensor / Direction Detector With Arduino 2. Arduino Tutorial Series The On-board Blinking LED 3. The US-100 Ultrasonic Distance Sensor Arduino Demo Code 4. Arduino Tutorial Series Running Epson Stepper Motor EM-546 ...
0 Tw eet 0 Like Share 0
This entry was posted in arduino and tagged e-gizmo, JZ863, rf module, wireless by admin. Bookmark the permalink.
pdfcrowd.com
hello admin, Im also using the same rf wireless module for my experiment. Have you tried sending sensor readings like ldr using these rf modules and arduino? Pls. help me with the source codes. Thanks.
Reply
Leave a Reply
Your email address will not be published. Required fields are marked *
Name
*
Are you a developer? Try out the HTML to PDF API
pdfcrowd.com
Website
Post Comment
Using Tilt Sensor / Direction Detector With Arduino Memory Stick Pro-HG Duo Versus SDHC Card
by luntianlaboratory.com 2010-2012 see change log, site rules & stuff posts with pictures of luntiancorner.com were moved articles. they are owned by the same author open in browser PRO version Are you a developer? Try out the HTML to PDF API
pdfcrowd.com
pdfcrowd.com