Skip to main content

Posts

Make MW transmitter Using NE555

Make MW transmitter Using NE555   Using comments NE555 timer chip 330 ohms, 1K ohms resistance 0.001uF capacitor Condenser mic and 9V DC power supply. Power supply :-  Using supply only DC stable you can use 9Volt battery and smps supply And mobile adaptor unfortunately it is no 9Volt but approx 7V max. NE555 timer chip :- This chip number 1 pin Ground, pin 2 Trigger, pin 3 Output, Pin 4 reset, pin 5 Cout, pin 6 Three, pin 7 discharge, pin 8 VCC. Important notice this chip you cannot supply voltage 9 volt up otherwise timer cheap was burning. This chip integrated 2 op-amp or 1 SR flip-flop or one NPN transistor and voltage divider. Supply voltage minimum 4 volt up and maximum 10 volt. Capacitor :- Using capacitor 0.001uF this capacitor number 102. You can used any condenser mic 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 qualit

FM transmitter signal booster circuit Diagram

FM transmitter signal booster circuit Diagram This signal Amplifier (booster) work only FM band. Important notice you can you big antana and antana place teddies on your home. so your signal more than area of coverage this booster more than 10 km range. You can watch the video go my youtube channel. This circuit Diagram work frequency boost up low amplitude to high amplitude. You can not use MW and SW transmitter because this design for FM circuit only. Using transistor - BC547. You can use any of MHz frequency range transistor examples (BC548, 2N222 extra you can search google). Using capacitor 1uF ceramic capacitor. You can also use 1nF, 10nF, 0.001uF. capacitor place transistor or inductor maintain distance 1CM. You cannot maintain distance than your frequency more than noise added your signal. Using resistance 220K ohms and 10K ohms. Using incuctor made than use you screwdriver throttle 10 turn 20 SWG wire. Using powe supply max volt apply 15V but I am using j

MW transmitter using NE555 timer chip

MW transmitter using NE555 timer chip Using comments NE555 timer chip 330 ohms, 1K ohms resistance 0.001uF capacitor Condenser mic and 9V DC power supply. Power supply :-  Using supply only DC stable you can use 9Volt battery and smps supply And mobile adaptor unfortunately it is no 9Volt but approx 7V max. NE555 timer chip :- This chip number 1 pin Ground, pin 2 Trigger, pin 3 Output, Pin 4 reset, pin 5 Cout, pin 6 Three, pin 7 discharge, pin 8 VCC. Important notice this chip you cannot supply voltage 9 volt up otherwise timer cheap was burning. This chip integrated 2 op-amp or 1 SR flip-flop or one NPN transistor and voltage divider. Supply voltage minimum 4 volt up and maximum 10 volt. Capacitor :- Using capacitor 0.001uF this capacitor number 102. You can used any condenser mic 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

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);