SlideShare a Scribd company logo
1 of 17
IMPLEMENTATION OF FREE SPACE
OPTICAL (FSO) COMMUNICATION
Guided By:
Dr. Sumanta Gupta
Prepared By:
Tulasi Chandan(1301EE42)
What Is Free Space optical
Communication?
 Wireless optical connections
through the atmosphere.
 Data modulated LASER beam is
transmitted through free space.
 Photodiode Receiver
 Directional, Long distance and
Secure form of Communication
Objective
Transmitting information via a laser beam
◦ Video
◦ Image
◦ Sound
010001100110
111011001111
001010000010
101110010001
111001011011
BASIC IDEA
Structural Design
Photo diode
Microcontroller
Laser driver
UART
Laser
Diode
Microcontroller
Transistor and Comparator
UART
COMPONENTS USED
❑ LASER DIODE
❑ LM317
❑ CAPACITORS
❑ RASBERRY PI
❑ PHOTO DIODE
❑ LM358
❑ RESISTORS
❑ LED
Light
Amplification by
Stimulated
Emission of
Radiation
Device that emits light through a
process of optical amplification
based on the stimulated emission of
electromagnetic radiation.
❑Stimulated Emission
❑Spontaneous Emission
CIRCUIT DIAGRAM
RECEIVING UNIT:
Photodiode:
❖ Photo means light and diode means a device consisting of two
electrodes.
❖ A photo diode is a light sensitive electronic device capable of
converting light into a voltage or current signal. It works on the
principle of photo generation.
❖ We can think of it as having a very high resistance when no light is
falling on it.
❖ As we increase the intensity of light incident on it, the current
through it gradually increases too. So, by increasing the incident light
on a photodiode, we convert it into a normal low value resistor, which
conducts current.
LM358:
❖ The LM358 series consists of two independent, high
gain, internally frequency compensated operational
amplifiers which were designed specifically to operate
from a single power supply over a wide range of
voltages.
❖ But in our experiment we are not using it as an
amplifier as such mainly, so basically, we use it as a
voltage comparator to compare two voltages, one is
fixed and the other varies with an environmental
parameter.
❖ If the parameter controlled voltage is higher than the
fixed voltage, then the IC should give one output, and
if it is lower than the fixed voltage, then it should give
another output. So, we see that the IC gives only two
types of outputs, which we design to be 5 Volts and 0
Volts. This makes our sensor digital.
WORKING OF RECEIVING CIRCUIT
❖ A photo diode is a light sensitive electronic device capable
of converting light into a voltage or current signal. It works
on the principle of photo generation.
❖ When the light emitted by laser or LED become incident on
the photodiode, the photodiode’s resistance comes down to a
finite value.
❖ Thus leading to generation of finite amount of of voltage or
current. If the voltage developed across the resistor is greater
than the threshold set by us, the output of the IC will be high,
else it will be low.
❖ Hence, if our reflected radiation is never strong enough to
be greater than the threshold and we have a constant low as
output, we can reduce the threshold voltage by turning the
“minus shaped” slit in the variable resistance towards its
terminal where we connected Gnd. In case our threshold is
very low and the output is always high in spite of no radiation
or if it is just too sensitive, then you can increase the
threshold by turning the slit the other way.
Pseudo Code: Transmitter
► Import related libraries
► ser = serial.Serial('/dev/ttyUSB3', 9600) #open serial comm
► x=glob.glob('*.jpg') #list of available images
► img= mp.imread(x[imno])
#x[imno] is user choosen image
► fimg= open(x[imno],'rb') #open image in binary format
► byte=fimg.read() #read image
► def Transmit(): #function to transmit data stream
► start= time.time();
► for i in range(len(byte)):
► ser.write(byte[i])
► time.sleep(0.005)
► ser.close() #stop serial
► delay = (time.time()-start) #calculate time and speed of tx
► speed=size*0.001/delay
► plt.imshow(img)
► plt.show()
Pseudo Code: Receiver
► Import related libraries
► port = serial.Serial('/dev/ttyUSB1', 9600)
#start serial comm
► f= open('received.jpg','wb') #create file for receiving
► while True: #keep on checking serial
► try:
► data = port.readline()
► if data:
► f.write(chr(int(data))) #store binary data in file
► time.sleep(0.001)
► except KeyboardInterrupt: #on CTRL+C come out
► f.close()
► break
► img= mp.imread('received.jpg') #read and display image
► plt.imshow(img)
► plt.show()
OUTPUT
FREQ:10Hz FREQ:100Hz FREQ:300Hz
► High bandwidth of optical communication
► With increasing data size faster
communication is necessary
► Directional, Long Distance, Fast, Security
► Green technology
► License free
► Speed vs range trade-off
Advantages of FSO over
other
Current Applications
►Defense and sensitive areas.
►Medical devices
►Under water Systems
►Mines, Mountains
►Communication with ISS,
Satellites
Earth
Thank You!

More Related Content

What's hot

Light Sensor (Auto Light on off)
Light Sensor (Auto Light on off)Light Sensor (Auto Light on off)
Light Sensor (Auto Light on off)Haziq Naeem
 
Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...
Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...
Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...Theresa Lowry-Lehnen
 
Automatic night lamp with morning alarm
Automatic night lamp with morning alarmAutomatic night lamp with morning alarm
Automatic night lamp with morning alarmviv3ksharma
 
PHOTODETECTORS
PHOTODETECTORSPHOTODETECTORS
PHOTODETECTORSAakankshaR
 
Dark sensor using LDR on breadboard
Dark sensor using LDR on breadboardDark sensor using LDR on breadboard
Dark sensor using LDR on breadboardSaqib Iqbal
 
Dark detector circuit
Dark detector circuitDark detector circuit
Dark detector circuitManje Gowda
 
AUTOMATIC NIGHT LAMP AND MORNING ALARM
AUTOMATIC NIGHT LAMP AND MORNING ALARMAUTOMATIC NIGHT LAMP AND MORNING ALARM
AUTOMATIC NIGHT LAMP AND MORNING ALARMvinaykumar potnuru
 
Automatic led night lamp
Automatic led night lampAutomatic led night lamp
Automatic led night lamppratik parekh
 
Automatic street light using LDR and Transistor
Automatic street light using LDR  and TransistorAutomatic street light using LDR  and Transistor
Automatic street light using LDR and TransistorHimanshiSingh71
 
UNIT 3 - Magnetostatics - Problems
UNIT 3 - Magnetostatics - ProblemsUNIT 3 - Magnetostatics - Problems
UNIT 3 - Magnetostatics - ProblemsKannanKrishnana
 
automatic-street-light-controller
automatic-street-light-controllerautomatic-street-light-controller
automatic-street-light-controllerAmit Singh
 

What's hot (19)

Light Sensor (Auto Light on off)
Light Sensor (Auto Light on off)Light Sensor (Auto Light on off)
Light Sensor (Auto Light on off)
 
Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...
Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...
Junior cycle science physics electricity. By Theresa Lowry-Lehnen. Science Te...
 
Clap switch
Clap switchClap switch
Clap switch
 
Automatic night lamp with morning alarm
Automatic night lamp with morning alarmAutomatic night lamp with morning alarm
Automatic night lamp with morning alarm
 
Clap switch
Clap switchClap switch
Clap switch
 
Automatic Night Light
Automatic Night LightAutomatic Night Light
Automatic Night Light
 
PHOTODETECTORS
PHOTODETECTORSPHOTODETECTORS
PHOTODETECTORS
 
Dark sensor using LDR on breadboard
Dark sensor using LDR on breadboardDark sensor using LDR on breadboard
Dark sensor using LDR on breadboard
 
Presentation1
Presentation1Presentation1
Presentation1
 
Dark detector circuit
Dark detector circuitDark detector circuit
Dark detector circuit
 
AUTOMATIC NIGHT LAMP AND MORNING ALARM
AUTOMATIC NIGHT LAMP AND MORNING ALARMAUTOMATIC NIGHT LAMP AND MORNING ALARM
AUTOMATIC NIGHT LAMP AND MORNING ALARM
 
Automatic led night lamp
Automatic led night lampAutomatic led night lamp
Automatic led night lamp
 
Automatic street light using LDR and Transistor
Automatic street light using LDR  and TransistorAutomatic street light using LDR  and Transistor
Automatic street light using LDR and Transistor
 
Automatic Night Lamp With Morning Alarm
Automatic Night Lamp With Morning AlarmAutomatic Night Lamp With Morning Alarm
Automatic Night Lamp With Morning Alarm
 
Automatic Night Light With Morning Alarm
Automatic Night Light With Morning AlarmAutomatic Night Light With Morning Alarm
Automatic Night Light With Morning Alarm
 
WAVELET TRANSFORM
WAVELET TRANSFORMWAVELET TRANSFORM
WAVELET TRANSFORM
 
UNIT 3 - Magnetostatics - Problems
UNIT 3 - Magnetostatics - ProblemsUNIT 3 - Magnetostatics - Problems
UNIT 3 - Magnetostatics - Problems
 
Automatic night lamp
Automatic night lampAutomatic night lamp
Automatic night lamp
 
automatic-street-light-controller
automatic-street-light-controllerautomatic-street-light-controller
automatic-street-light-controller
 

Similar to Fso_seminar

pdf_20230727_162550_0000.pdf
pdf_20230727_162550_0000.pdfpdf_20230727_162550_0000.pdf
pdf_20230727_162550_0000.pdfKrupa402713
 
Li-Fi Audio Transmission Project Report
Li-Fi Audio Transmission Project ReportLi-Fi Audio Transmission Project Report
Li-Fi Audio Transmission Project ReportMuhammed Anaz PK
 
Optiwave Semiconductor LASER Modulation Response
Optiwave Semiconductor LASER Modulation ResponseOptiwave Semiconductor LASER Modulation Response
Optiwave Semiconductor LASER Modulation ResponseRAJNEESH KUMAR SALGOTRA
 
Laser light security system
Laser light security systemLaser light security system
Laser light security systemMehenaz Sorna
 
Laser security system
Laser security system Laser security system
Laser security system ajaygurumadu
 
DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY
DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY
DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY OWOLABI Yussuf Kehinde
 
LASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATOR
LASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATORLASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATOR
LASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATORShahrukh Javed
 
IRJET- Design and Development of a Programmable High Current Laser Diode ...
IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...
IRJET- Design and Development of a Programmable High Current Laser Diode ...IRJET Journal
 
The IoT Academy IoT training Arduino Part 4 Arduino interfaces
The IoT Academy IoT training Arduino Part 4 Arduino interfacesThe IoT Academy IoT training Arduino Part 4 Arduino interfaces
The IoT Academy IoT training Arduino Part 4 Arduino interfacesThe IOT Academy
 
projectreport on bicycle lock
projectreport on bicycle lockprojectreport on bicycle lock
projectreport on bicycle lockDilip Kolli
 
Transmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light PulsesTransmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light PulsesKarthik Rathinavel
 
LASER SECURITY SYSTEM (PPTx) PRESENTATION
LASER SECURITY SYSTEM (PPTx) PRESENTATIONLASER SECURITY SYSTEM (PPTx) PRESENTATION
LASER SECURITY SYSTEM (PPTx) PRESENTATIONKUNALDUTTA36
 
electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...
electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...
electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...Chandresh Pandey
 
Laser security system
Laser security systemLaser security system
Laser security systemvishwa rana
 
Laser security system
Laser security systemLaser security system
Laser security systemvishwa rana
 

Similar to Fso_seminar (20)

pdf_20230727_162550_0000.pdf
pdf_20230727_162550_0000.pdfpdf_20230727_162550_0000.pdf
pdf_20230727_162550_0000.pdf
 
Li-Fi Audio Transmission Project Report
Li-Fi Audio Transmission Project ReportLi-Fi Audio Transmission Project Report
Li-Fi Audio Transmission Project Report
 
Optiwave Semiconductor LASER Modulation Response
Optiwave Semiconductor LASER Modulation ResponseOptiwave Semiconductor LASER Modulation Response
Optiwave Semiconductor LASER Modulation Response
 
Laser light security system
Laser light security systemLaser light security system
Laser light security system
 
Laser security system
Laser security system Laser security system
Laser security system
 
DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY
DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY
DESIGN AND CONSTRUCTION OF A DATA TRANSMISSION SYSTEM USING LI-FI TECHNOLOGY
 
Laser_security_system.pptx
Laser_security_system.pptxLaser_security_system.pptx
Laser_security_system.pptx
 
LASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATOR
LASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATORLASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATOR
LASER BASED DOOR SECURITY SYSTEM USING SIREN GENERATOR
 
Project Report
Project Report Project Report
Project Report
 
IRJET- Design and Development of a Programmable High Current Laser Diode ...
IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...IRJET-  	  Design and Development of a Programmable High Current Laser Diode ...
IRJET- Design and Development of a Programmable High Current Laser Diode ...
 
The IoT Academy IoT training Arduino Part 4 Arduino interfaces
The IoT Academy IoT training Arduino Part 4 Arduino interfacesThe IoT Academy IoT training Arduino Part 4 Arduino interfaces
The IoT Academy IoT training Arduino Part 4 Arduino interfaces
 
projectreport on bicycle lock
projectreport on bicycle lockprojectreport on bicycle lock
projectreport on bicycle lock
 
Project Report
Project ReportProject Report
Project Report
 
Transmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light PulsesTransmitting Digital Signal through Light Pulses
Transmitting Digital Signal through Light Pulses
 
LASER SECURITY SYSTEM (PPTx) PRESENTATION
LASER SECURITY SYSTEM (PPTx) PRESENTATIONLASER SECURITY SYSTEM (PPTx) PRESENTATION
LASER SECURITY SYSTEM (PPTx) PRESENTATION
 
electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...
electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...
electrical_project_chandresh_report on laser Transmitter and Receiver_ final ...
 
Laser security system
Laser security systemLaser security system
Laser security system
 
Laser security system
Laser security systemLaser security system
Laser security system
 
Lec 4
Lec 4Lec 4
Lec 4
 
Cell phone detector
Cell phone detectorCell phone detector
Cell phone detector
 

Recently uploaded

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 

Recently uploaded (20)

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 

Fso_seminar

  • 1. IMPLEMENTATION OF FREE SPACE OPTICAL (FSO) COMMUNICATION Guided By: Dr. Sumanta Gupta Prepared By: Tulasi Chandan(1301EE42)
  • 2. What Is Free Space optical Communication?  Wireless optical connections through the atmosphere.  Data modulated LASER beam is transmitted through free space.  Photodiode Receiver  Directional, Long distance and Secure form of Communication
  • 3. Objective Transmitting information via a laser beam ◦ Video ◦ Image ◦ Sound 010001100110 111011001111 001010000010 101110010001 111001011011
  • 5. Structural Design Photo diode Microcontroller Laser driver UART Laser Diode Microcontroller Transistor and Comparator UART
  • 6. COMPONENTS USED ❑ LASER DIODE ❑ LM317 ❑ CAPACITORS ❑ RASBERRY PI ❑ PHOTO DIODE ❑ LM358 ❑ RESISTORS ❑ LED
  • 7. Light Amplification by Stimulated Emission of Radiation Device that emits light through a process of optical amplification based on the stimulated emission of electromagnetic radiation. ❑Stimulated Emission ❑Spontaneous Emission
  • 9. RECEIVING UNIT: Photodiode: ❖ Photo means light and diode means a device consisting of two electrodes. ❖ A photo diode is a light sensitive electronic device capable of converting light into a voltage or current signal. It works on the principle of photo generation. ❖ We can think of it as having a very high resistance when no light is falling on it. ❖ As we increase the intensity of light incident on it, the current through it gradually increases too. So, by increasing the incident light on a photodiode, we convert it into a normal low value resistor, which conducts current.
  • 10. LM358: ❖ The LM358 series consists of two independent, high gain, internally frequency compensated operational amplifiers which were designed specifically to operate from a single power supply over a wide range of voltages. ❖ But in our experiment we are not using it as an amplifier as such mainly, so basically, we use it as a voltage comparator to compare two voltages, one is fixed and the other varies with an environmental parameter. ❖ If the parameter controlled voltage is higher than the fixed voltage, then the IC should give one output, and if it is lower than the fixed voltage, then it should give another output. So, we see that the IC gives only two types of outputs, which we design to be 5 Volts and 0 Volts. This makes our sensor digital.
  • 11. WORKING OF RECEIVING CIRCUIT ❖ A photo diode is a light sensitive electronic device capable of converting light into a voltage or current signal. It works on the principle of photo generation. ❖ When the light emitted by laser or LED become incident on the photodiode, the photodiode’s resistance comes down to a finite value. ❖ Thus leading to generation of finite amount of of voltage or current. If the voltage developed across the resistor is greater than the threshold set by us, the output of the IC will be high, else it will be low. ❖ Hence, if our reflected radiation is never strong enough to be greater than the threshold and we have a constant low as output, we can reduce the threshold voltage by turning the “minus shaped” slit in the variable resistance towards its terminal where we connected Gnd. In case our threshold is very low and the output is always high in spite of no radiation or if it is just too sensitive, then you can increase the threshold by turning the slit the other way.
  • 12. Pseudo Code: Transmitter ► Import related libraries ► ser = serial.Serial('/dev/ttyUSB3', 9600) #open serial comm ► x=glob.glob('*.jpg') #list of available images ► img= mp.imread(x[imno]) #x[imno] is user choosen image ► fimg= open(x[imno],'rb') #open image in binary format ► byte=fimg.read() #read image ► def Transmit(): #function to transmit data stream ► start= time.time(); ► for i in range(len(byte)): ► ser.write(byte[i]) ► time.sleep(0.005) ► ser.close() #stop serial ► delay = (time.time()-start) #calculate time and speed of tx ► speed=size*0.001/delay ► plt.imshow(img) ► plt.show()
  • 13. Pseudo Code: Receiver ► Import related libraries ► port = serial.Serial('/dev/ttyUSB1', 9600) #start serial comm ► f= open('received.jpg','wb') #create file for receiving ► while True: #keep on checking serial ► try: ► data = port.readline() ► if data: ► f.write(chr(int(data))) #store binary data in file ► time.sleep(0.001) ► except KeyboardInterrupt: #on CTRL+C come out ► f.close() ► break ► img= mp.imread('received.jpg') #read and display image ► plt.imshow(img) ► plt.show()
  • 15. ► High bandwidth of optical communication ► With increasing data size faster communication is necessary ► Directional, Long Distance, Fast, Security ► Green technology ► License free ► Speed vs range trade-off Advantages of FSO over other
  • 16. Current Applications ►Defense and sensitive areas. ►Medical devices ►Under water Systems ►Mines, Mountains ►Communication with ISS, Satellites Earth