Skip to main content

Posts

MW transmitter using Arduino nano

MW transmitter using Arduino nano Circuit Diagram MW frequency  :-   Medium wave is the part of the medium frequency radio band used mainly for AM radio broadcasting. The spectrum provides about 120 channels with limited sound quality. During daytime, only local stations can be received. Code _____________________________________________ #define ANTENNA_PIN PB3 void setup() { Serial.begin(115200); uint32_t fTransmit = 600; DDRB |= (1 << ANTENNA_PIN); TCCR2A = (0 << COM2A1) + (1 << COM2A0); TCCR2A |= (1 << WGM21) + (0 << WGM20); TCCR2B = (0 << CS22) + (0 << CS21) + (1 << CS20); OCR2A = F_CPU / (2000 * fTransmit) - 1; char strbuf[255]; sprintf(strbuf, "Will broadcast at %d KHz", (F_CPU / (2 * (1 + OCR2A)) / 1000)); Serial.println(strbuf); TCCR1A |= (1 << WGM11) + (1 << WGM10); TCCR1B = (1 << WGM12); TCCR1B |= (0 << CS12) + (0 << CS11) + (1 << CS10);

FM Transmitter using Raspbarry PI

FM Transmitter using Raspbarry PI model 3 B What is respbarry pi : - The  Raspberry Pi  is a low cost, credit-card sized computer that plugs into a computer monitor or TV, and uses a standard keyboard and mouse. It is a capable little device that enables people of all ages to explore computing, and to learn how to program in languages like Scratch and Python. Hardware requirement :- you can use raspberry Pi zeroW, raspberry Pi 2, raspberry Pi model 3b, raspberry Pi model 3b Plus, raspberry Pi 4. FM RDS setup :- Frist you go to GitHub and search FM RDS search results selected FM-RDS than copy clone link than go to terminal type $ sudo git clone (paste link) than prass enter file download start complete download than go to file path type $ cd PiFmRds/src press enter than type  $ make clean press enter  $ make press enter than automatic create run file. Run you pi FM transmitter type $ sudo ./pi_fm_rds press enter Run pi FM transmitter default frequency 107MH

POWER FULL LONG RANGE FM TRANSMITTER

POWER FULL LONG RANGE FM TRANSMITTER Circuit Diagram Powersupply   :-   Using power supply stable DC voltage  5V  max. You can only use battery because battery is perfect for this circuit battery output doesn't any noise. Components  :-  Transistor BC547, Resistance 100 ohms, 4.7K ohms, 1K ohms, 27K ohms.   Capacitor 0.2uF, 0.5uF, 0.047uF, 6.8pF, 22pF.   Inductor 1uH. Condenser mic any. Resistance  :-   Using resistance 100 ohme +-5% changing 1/3watt, 4.7K ohms +-5% changing 1/3watt, 1K ohms +-5% changing 1/3watt, 27K ohms +-5% changing 1/3watt. Capacitor  :-   0.5uF this capacitor number 504 non-polar, 33pF this capacitor number 33 non-polar, 6.8pF this capacitor number 6.8 non-polar, 0.2uF this capacitor number 204. Inductor  :-   This part important part for any transmitter circuit, 1uH 5Turn 24SWG. Transistor  :-   BC547  is an NPN Bipolar junction transistor. It is commonly  used  to amplify current. A small current at its base controls a la

Make robot at home

Make robot at home Circuit Diagram Code   #include <AFMotor.h> #include <NewPing.h> #include <Servo.h> #define TRIG_PIN A0 #define ECHO_PIN A1 #define MAX_DISTANCE 200 #define MAX_SPEED 150 // sets speed of DC motors #define MAX_SPEED_OFFSET 20 NewPing sonar(TRIG_PIN, ECHO_PIN, MAX_DISTANCE); AF_DCMotor motor1(1, MOTOR12_1KHZ); //AF_DCMotor motor2(2, MOTOR12_1KHZ); //AF_DCMotor motor3(3, MOTOR34_1KHZ); AF_DCMotor motor4(4, MOTOR34_1KHZ); Servo myservo; boolean goesForward=false; int distance = 100; int speedSet = 0; void setup() { myservo.attach(10); myservo.write(115); delay(1000); distance = readPing(); delay(100); distance = readPing(); delay(100); distance = readPing(); delay(100); distance = readPing(); delay(100); } void loop() { int distanceR = 0; int distanceL = 0; delay(40); if(distance<=15) { moveStop(); delay(100); moveBackward(); delay(300); moveStop(); delay(200);

Arduino robot in hindi at home

Make Arduino robot in hindi at home CIRCUIT DIGRAM  :- Code copy and paste to Arduino IDE  And code upload hear Bellow ↓  ↓ Arduino Nano V3.0 ATmega328P ( Arduino Compatible ) //ARDUINO OBSTACLE AVOIDING CAR// // Before uploading the code you have to install the necessary library// //AFMotor Library https://learn.adafruit.com/adafruit-motor-shield/library-install // //NewPing Library https://github.com/livetronic/Arduino-NewPing// //Servo Library https://github.com/arduino-libraries/Servo.git // // To Install the libraries go to sketch >> Include Library >> Add .ZIP File >> Select the Downloaded ZIP files From the Above links // #include <AFMotor.h> #include <NewPing.h> #include <Servo.h> #define TRIG_PIN A0 #define ECHO_PIN A1 #define MAX_DISTANCE 200 #define MAX_SPEED 190 // sets speed of DC motors #define MAX_SPEED_OFFSET 20 NewPing sonar(TRIG_PIN, ECHO_PIN, MAX_DISTANCE); AF_DCMotor motor1(1, MOTOR12_1KHZ)

Traffic control system by

Traffic control system A rduino code

Make LDR circuit

               Make LDR Circuit Used Transistor - BC547. Used Resistances -  4.7K ohms, 100 ohms Used Light Depandade Resistance - Used Supply - DC 3.7V battery