In Arduino RF module simulation in proteus tutorial, we’ll learn to simulate rf module in proteus 7/8 professional software. but before starting, you must have to download Rf module library for proteus. Download Rf module library from this link click here to download rf module library. and follow Readme.txt file.
After downloading, Extract files from library folder and paste it on below location. Paste .MD5 file in MODELs folder.
- For Proteus 7 Professional, library folder link will be: C:\Program Files (x86)\Labcenter Electronics\Proteus 7 Professional\LIBRARY
- For Proteus 8 Professional, library folder link will be:C:\ProgramData\Labcenter Electronics\Proteus 8 Professional\Data\LIBRARY
Materials required
- Arduino uno
- Rf Module (Transmitter and Receiver)
- Virtual Terminal (proteus)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Code by satyam singh. ****** | |
//* subscribe my youtube channel from below link | |
//* https://www.youtube.com/channel/UCOrVJ1fDDCKDYMAYQmn6zWw | |
//* | |
//*************************************"**********************// | |
void setup() { | |
Serial.begin(9600); | |
// put your setup code here, to run once: | |
} | |
void loop() { | |
Serial.print("THE ELECTRONICS "); | |
Serial.print(" www.theelectronics.co.in"); | |
Serial.println(" "); | |
delay(1000); | |
// put your main code here, to run repeatedly: | |
} |
0 Comments