0% found this document useful (0 votes)
63 views9 pages

Lunt I An Laboratory 4

Arduino RF Wireless Module Setup - JZ863 Posted on December 29, 2012 by admin t opics android app arduino code do it yourself Extra gadgets hacking gadgets just looking my projects Software.

Uploaded by

gui9871
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
63 views9 pages

Lunt I An Laboratory 4

Arduino RF Wireless Module Setup - JZ863 Posted on December 29, 2012 by admin t opics android app arduino code do it yourself Extra gadgets hacking gadgets just looking my projects Software.

Uploaded by

gui9871
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Home

Arduino Tutorials

About Me

Tw eet

Like

Share

Search

Arduino RF Wireless Module Setup JZ863


Posted on December 29, 2012 by admin

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

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

A Laptop Cooling Pad Test

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

Windows 7 and Windows 8

t ags

android arduino
battery camera computer ddwrt

electricity epson fan freedom


plan

globe hard disk hard


pdfcrowd.com

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

laptop lcd ldr led leds linux


mmorpg m otor mp3 phone potentiometer pow er supply psu push button

Get another Arduino board. Connect the other module using the instructions above. Treat it as data receiving device. Upload the sketch below.

qos router samsung

sd card seven segm ents smart sony


stepper m otor

sun cellular

tattoo toshiba usb wifi


windows w ire wordpress

const byte led = 13;


open in browser PRO version
Are you a developer? Try out the HTML to PDF API

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.

2 THOUGHTS ON ARDUINO RF WIRELESS MODULE SETUP JZ863

GABRIEL on March 7, 2013 at 3:42 pm said:

Does it work with RF ASK modules?


Reply

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

chreisha on April 2, 2013 at 6:51 am said:

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

Email

*
Are you a developer? Try out the HTML to PDF API

open in browser PRO version

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

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

You might also like