├── .gitignore ├── LICENSE ├── Mepits_Tutorials ├── README.md ├── Scribd_Downloader.py ├── TutorialsPoint_PDF_Downloader.py ├── asset ├── Screenshot (59).png ├── Screenshot (61).png ├── tp_1.JPG └── tp_2.JPG ├── b.png ├── counter.pickle ├── mepits.csv └── tp.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | 28 | # PyInstaller 29 | # Usually these files are written by a python script from a template 30 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 31 | *.manifest 32 | *.spec 33 | 34 | # Installer logs 35 | pip-log.txt 36 | pip-delete-this-directory.txt 37 | 38 | # Unit test / coverage reports 39 | htmlcov/ 40 | .tox/ 41 | .coverage 42 | .coverage.* 43 | .cache 44 | nosetests.xml 45 | coverage.xml 46 | *.cover 47 | .hypothesis/ 48 | 49 | # Translations 50 | *.mo 51 | *.pot 52 | 53 | # Django stuff: 54 | *.log 55 | local_settings.py 56 | 57 | # Flask stuff: 58 | instance/ 59 | .webassets-cache 60 | 61 | # Scrapy stuff: 62 | .scrapy 63 | 64 | # Sphinx documentation 65 | docs/_build/ 66 | 67 | # PyBuilder 68 | target/ 69 | 70 | # Jupyter Notebook 71 | .ipynb_checkpoints 72 | 73 | # pyenv 74 | .python-version 75 | 76 | # celery beat schedule file 77 | celerybeat-schedule 78 | 79 | # SageMath parsed files 80 | *.sage.py 81 | 82 | # dotenv 83 | .env 84 | 85 | # virtualenv 86 | .venv 87 | venv/ 88 | ENV/ 89 | 90 | # Spyder project settings 91 | .spyderproject 92 | .spyproject 93 | 94 | # Rope project settings 95 | .ropeproject 96 | 97 | # mkdocs documentation 98 | /site 99 | 100 | # mypy 101 | .mypy_cache/ 102 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 V!shal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Mepits_Tutorials: -------------------------------------------------------------------------------- 1 | import csv 2 | import pickle 3 | #from pushbullet import Pushbullet 4 | import smtplib 5 | 6 | 7 | 8 | 9 | file = 'mepits.csv' 10 | 11 | rows =[] 12 | with open(file, 'r') as csv_file: 13 | reader = csv.reader(csv_file) 14 | 15 | for row in reader: 16 | rows.append(row[0]) 17 | 18 | pic = open("counter.pickle","rb") 19 | count = list(pickle.load(pic)) 20 | count[0] +=1 21 | print(count) 22 | pic.close() 23 | 24 | 25 | pickle_out = open("counter.pickle",'wb') 26 | pickle_in = pickle.dump(count,pickle_out) 27 | pickle_out.close() 28 | 29 | pic = open("counter.pickle","rb") 30 | link_number = pickle.load(pic) 31 | s = smtplib.SMTP('smtp.gmail.com',587) 32 | s.starttls() 33 | s.login('Your email',"Your Email app password") #get app password and allow less secured app after that confirm your activity. 34 | message = "\nToday's MEPITS Tutorial %s" %(str(rows[link_number[0]])) 35 | #print(message) 36 | s.sendmail('From-email','to-email',message) 37 | s.quit() 38 | 39 | #link_number = pickle.load(pic) 40 | #pb.push_note("MEPITS",body=rows[link_number[0]]) 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tutorials-Downloader 2 | Download any type of tutorials in PDF format available on Tutorialspoint.com 3 | --------------------- 4 | 1.Download the files. 5 | 2.Enter course or tutorial name you wish to download as PDF. 6 | 3.Download 7 | 8 | 9 | ![image](https://github.com/the-vishal/Tutorials-Downloader/blob/master/asset/tp_1.JPG) 10 | 11 | 4.Your PDF will be saved in the same directory as that of these files. 12 | ![image](https://github.com/the-vishal/Tutorials-Downloader/blob/master/asset/tp_2.JPG) 13 | 14 | 15 | # Scribd_Downloader.py 16 | Download readable documents from scribd.com 17 | -------------- 18 | 1.Change the url and Directory path in script. 19 | 20 | ![image](https://github.com/the-vishal/Tutorials-Downloader/blob/master/asset/Screenshot%20(61).png) 21 | Script in action: https://youtu.be/aE80EmK2NMY 22 | -------------------------------------------------------------------------------- /Scribd_Downloader.py: -------------------------------------------------------------------------------- 1 | import bs4 as bs 2 | from selenium import webdriver 3 | from urllib import request 4 | import os 5 | import re 6 | import img2pdf 7 | 8 | browser = webdriver.Chrome() 9 | url = 'https://www.scribd.com/document/284732331/Text-Monochrome-Colour-Television-R-R-Gulati-pdf' 10 | browser.get(url) 11 | source = browser.page_source 12 | 13 | soup = bs.BeautifulSoup(source,"lxml") 14 | images =[] 15 | 16 | for element in soup.find_all('div', attrs={'class':"ie_fix"}): 17 | try: 18 | images.append(element.find('img').get('src')) 19 | except: 20 | pass 21 | 22 | 23 | downloader = request.URLopener() 24 | path = 'C:/Users/Vishal/Desktop/PYTHON BEST/' 25 | name = url.split('/')[5][0:-23] 26 | 27 | newpath = path+name 28 | 29 | 30 | if not os.path.exists(newpath): 31 | os.mkdir(name) 32 | 33 | for image in images: 34 | image_name = image.split('/')[-1] 35 | pattern = r"(([0-9]+))" 36 | match = re.search(pattern, image_name) 37 | try: 38 | global page 39 | page = match.group() 40 | 41 | 42 | except: 43 | pass 44 | 45 | downloader.retrieve(image,newpath+'/'+page+'.jpg') 46 | 47 | with open('output.pdf',"wb") as f: 48 | f.write(img2pdf.convert([newpath+'/'+image for image in os.listdir(newpath) if image.endswith('.jpg')])) 49 | -------------------------------------------------------------------------------- /TutorialsPoint_PDF_Downloader.py: -------------------------------------------------------------------------------- 1 | import wget 2 | from urllib import request 3 | from tkinter import * 4 | import webbrowser 5 | 6 | #opening browser 7 | def ref(click): 8 | webbrowser.open_new(r'https://the-vishal.github.io/') 9 | 10 | 11 | #tkinter front-end 12 | win =Tk() 13 | win.geometry ="400x400" 14 | win.wm_title('TutorialPoint Downloader') 15 | win.config(background = '#708090', height = 600, width = 450) 16 | 17 | 18 | #retrieve pdf file 19 | def PDF_Download(): 20 | global tutorial 21 | tutorial=tutorial_name.get() 22 | try: 23 | PDF_url = 'https://www.tutorialspoint.com/' + tutorial + '/' + tutorial + '_tutorial.pdf' 24 | print(PDF_url) 25 | wget.download(PDF_url) 26 | 27 | except: 28 | raise Exception('No such Tutorial Found') 29 | 30 | 31 | 32 | f= Frame(win,height=500, width=150) 33 | f.grid(row=0, column=0,padx=50, pady=50) 34 | tutorial_name = Entry(f, width=70 ) 35 | tutorial_name.grid(row=0, column=0) 36 | 37 | Get_PDF = Button(f, text =' Download',command = PDF_Download) 38 | Get_PDF.grid(row =0, column =1) 39 | Photo = PhotoImage(file ='tp.png') 40 | Photo0 = PhotoImage(file = 'b.png') 41 | lbl0 = Label(f,image=Photo0) 42 | lbl = Label(f, image = Photo) 43 | lbl.grid(row =5, column =0,padx=10,pady=10) 44 | lbl0.grid(row=4,column=0) 45 | lbl1 = Label(f, text="Created by : the-vishal@github", fg='blue', cursor ="hand2") 46 | lbl1.grid(row =6, column =0,padx=10,pady=10) 47 | 48 | lbl1.bind("", ref) 49 | 50 | win.mainloop() 51 | 52 | 53 | #----------------- Completed to Requirement -------------------------------------------- 54 | -------------------------------------------------------------------------------- /asset/Screenshot (59).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/asset/Screenshot (59).png -------------------------------------------------------------------------------- /asset/Screenshot (61).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/asset/Screenshot (61).png -------------------------------------------------------------------------------- /asset/tp_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/asset/tp_1.JPG -------------------------------------------------------------------------------- /asset/tp_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/asset/tp_2.JPG -------------------------------------------------------------------------------- /b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/b.png -------------------------------------------------------------------------------- /counter.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/counter.pickle -------------------------------------------------------------------------------- /mepits.csv: -------------------------------------------------------------------------------- 1 | https://www.mepits.com/tutorial/581/Trending-Technologies/PROGRAMMABLE-SYSTEM-ON-CHIP, PROGRAMMABLE SYSTEM ON CHIP,, 2 | https://www.mepits.com/tutorial/579/Electrical/MPPT-or-PWM???-Which-is-better??, MPPT or PWM??? Which is better??,, 3 | https://www.mepits.com/tutorial/580/3D-Printing/3D-Modelling-using-Tinkercad, 3D Modelling using Tinkercad,, 4 | https://www.mepits.com/tutorial/578/Video-Tutorials/Automatic-Irrigation-System, Automatic Irrigation System,, 5 | https://www.mepits.com/tutorial/577/PIC/FINITE-STATE-MACHINE-(FSM), FINITE STATE MACHINE (FSM),, 6 | https://www.mepits.com/tutorial/576/Arduino/Using-Free-RTOS-multi-tasking-in-Arduino, Using Free RTOS multi-tasking in Arduino,, 7 | https://www.mepits.com/tutorial/575/Trending-Technologies/LoRa---Trending-Wireless-Technology, LoRa - Trending Wireless Technology,, 8 | https://www.mepits.com/tutorial/573/PIC/PULSE-WIDTH-MODULATION-(PWM)-WITHOUT-PWM-MODULE, PULSE WIDTH MODULATION (PWM) WITHOUT PWM MODULE,, 9 | https://www.mepits.com/tutorial/572/Internet-of-Things-(IoT)/INTERNET-OF-THINGS--THE-TRENDING-TECHNOLOGY, INTERNET OF THINGS- THE TRENDING TECHNOLOGY,, 10 | https://www.mepits.com/tutorial/506/Raspberry-Pi/What-is-Raspberry-Pi-?-Raspberry-Pi-Tutorial-Part-1, What is Raspberry Pi ? Raspberry Pi Tutorial Part 1,, 11 | https://www.mepits.com/tutorial/502/Trending-Technologies/3D-Printer, 3D Printer,, 12 | https://www.mepits.com/tutorial/516/Biomedical/How-to-record-your-dreams, How to record your dreams,, 13 | https://www.mepits.com/tutorial/526/Wireless/NailO---The-Wireless-Track-pad, NailO - The Wireless Track pad,, 14 | https://www.mepits.com/tutorial/567/Trending-Technologies/ENERGY-HARVESTING-WITH-BACTERIA, ENERGY HARVESTING WITH BACTERIA,, 15 | https://www.mepits.com/tutorial/539/Biomedical/Implantable-Electronics:-A-Futuristic-in-the-Field-of-Medicine, Implantable Electronics: A Futuristic in the Field of Medicine,, 16 | https://www.mepits.com/tutorial/568/Trending-Technologies/VIRTUAL-REALITY-HEADSET, VIRTUAL REALITY HEADSET,, 17 | https://www.mepits.com/tutorial/566/Arduino/How-to-interface-Arduino-with-Water-Sensor, How to interface Arduino with Water Sensor,, 18 | https://www.mepits.com/tutorial/565/Arduino/How-to-interface-Arduino-with-Relay-and-MIC, How to interface Arduino with Relay and MIC,, 19 | https://www.mepits.com/tutorial/564/Arduino/How-to-interface-Arduino-with-HexKeypad, How to interface Arduino with HexKeypad,, 20 | https://www.mepits.com/tutorial/563/Arduino/How-to-interface-Arduino-with-KY-023-Joystick, How to interface Arduino with KY-023 Joystick,, 21 | https://www.mepits.com/tutorial/562/Arduino/How-to-interface-Arduino-with-NFD-5641AX-four-digit-seven-segment-display, How to interface Arduino with NFD-5641AX four digit seven segment display,, 22 | https://www.mepits.com/tutorial/561/Arduino/How-to-interface-Arduino-with-SZ2107889-dot-matrix-board, How to interface Arduino with SZ2107889 dot matrix board,, 23 | https://www.mepits.com/tutorial/560/Arduino/How-to-interface-Arduino-with-DHT11-Humidity-Sensor, How to interface Arduino with DHT11 Humidity Sensor,, 24 | https://www.mepits.com/tutorial/559/Arduino/How-to-interface-Arduino-with-7-segment-display, How to interface Arduino with 7 segment display,, 25 | https://www.mepits.com/tutorial/557/Electrical/ENERGY-HARVESTING-WITH-TORNADO, ENERGY HARVESTING WITH TORNADO,, 26 | https://www.mepits.com/tutorial/555/Electrical/ELECTRICAL-PROTECTION-DEVICES, ELECTRICAL PROTECTION DEVICES,, 27 | https://www.mepits.com/tutorial/554/Arduino/MEPROBOUNO-ROBOT-CONTROLLER, MEPROBOUNO ROBOT CONTROLLER,, 28 | https://www.mepits.com/tutorial/553/ARM/How-to-Interface-UART-with-ARM-(STM32F103VBT6), How to Interface UART with ARM (STM32F103VBT6),, 29 | https://www.mepits.com/tutorial/552/Electrical/SOLAR-INVERTERS, SOLAR INVERTERS,, 30 | https://www.mepits.com/tutorial/551/ARM/How-to-interface-ARM-with-LED-(Timer-Interrupt), How to interface ARM with LED (Timer Interrupt),, 31 | https://www.mepits.com/tutorial/550/ARM/How-to-interface-LED-with-ARM-(STM32F103VBT6), How to interface LED with ARM (STM32F103VBT6),, 32 | https://www.mepits.com/tutorial/549/Arduino/How-to-interface-Arduino-UART, How to interface Arduino UART,, 33 | https://www.mepits.com/tutorial/548/Arduino/How-to-interface-Arduino-with-Bluetooth, How to interface Arduino with Bluetooth,, 34 | https://www.mepits.com/tutorial/547/Arduino/How-to-interface-Arduino-with-Servomotor, How to interface Arduino with Servomotor,, 35 | https://www.mepits.com/tutorial/546/Arduino/How-to-interface-Arduino-with-DC-Motor, How to interface Arduino with DC Motor,, 36 | https://www.mepits.com/tutorial/545/Arduino/How-to-interface-sensors-with-Arduino, How to interface sensors with Arduino,, 37 | https://www.mepits.com/tutorial/544/Arduino/How-to-interface-LED-with-Arduino, How to interface LED with Arduino,, 38 | https://www.mepits.com/tutorial/543/Matlab/MATLAB-GUI-TUTORIAL, MATLAB GUI TUTORIAL,, 39 | https://www.mepits.com/tutorial/540/ARM/How-to-interface-LCD-with-ARM, How to interface LCD with ARM,, 40 | https://www.mepits.com/tutorial/538/VLSI/VHDL-Tutorial, VHDL Tutorial,, 41 | https://www.mepits.com/tutorial/536/Electrical/Power-Line-Carrier-Communication, Power Line Carrier Communication,, 42 | https://www.mepits.com/tutorial/535/Trending-Technologies/Wireless-Vision-Technology, Wireless Vision Technology,, 43 | https://www.mepits.com/tutorial/534/Active-Component/Diodes, Diodes,, 44 | https://www.mepits.com/tutorial/532/Raspberry-Pi/Arduino-or-Raspberry-pi:-Which-is-the-Right-DIY-platform-for-you?, Arduino or Raspberry pi: Which is the Right DIY platform for you?,, 45 | https://www.mepits.com/tutorial/531/Communication/GPS, GPS,, 46 | https://www.mepits.com/tutorial/530/New-Technology/BeagleBone-Black-Development-Board, BeagleBone Black Development Board,, 47 | "https://www.mepits.com/tutorial/529/Basic-Electronics/Talk-By-Lighting,-Telegraph", Talk By Lighting, Telegraph, 48 | https://www.mepits.com/tutorial/528/Trending-Technologies/Veggie-Quality-Tester, Veggie Quality Tester,, 49 | https://www.mepits.com/tutorial/527/Electrical/A-New-Paradigm-for-Ocean-Energy-Extraction, A New Paradigm for Ocean Energy Extraction,, 50 | https://www.mepits.com/tutorial/525/Trending-Technologies/Make-way-for-the---Transparent-Car!, Make way for the - Transparent Car!,, 51 | https://www.mepits.com/tutorial/524/Raspberry-Pi/A-Raspberry-Pi-Arduino-Add-On-Board---The-RasPiO-Duino, A Raspberry Pi Arduino Add On Board - The RasPiO Duino,, 52 | https://www.mepits.com/tutorial/523/Trending-Technologies/4D-Printing, 4D Printing,, 53 | https://www.mepits.com/tutorial/522/Electrical/How-to-Make-a-Battery-Using-Cola-Can, How to Make a Battery Using Cola Can,, 54 | https://www.mepits.com/tutorial/521/Electrical/All-about-Intel-Edison-Development-board, All about Intel Edison Development board,, 55 | https://www.mepits.com/tutorial/520/Arduino/What-is-RFduino?, What is RFduino?,, 56 | https://www.mepits.com/tutorial/519/Trending-Technologies/Top-10-Latest-Technologies-Around-the-World, Top 10 Latest Technologies Around the World,, 57 | https://www.mepits.com/tutorial/518/Trending-Technologies/Finger-Vein-Technology-Replacing-ATM-Cards, Finger Vein Technology Replacing ATM Cards,, 58 | https://www.mepits.com/tutorial/517/Biomedical/Germ-Zapping-Robot-Could-Fight-Ebola-and-Other-Deadly-Viruses, Germ-Zapping Robot Could Fight Ebola and Other Deadly Viruses,, 59 | https://www.mepits.com/tutorial/515/Trending-Technologies/How-a-3D-Printer-Works-With-a-Revolutionary-Mechanism, How a 3D Printer Works With a Revolutionary Mechanism,, 60 | https://www.mepits.com/tutorial/514/Trending-Technologies/Future-of-Glass-Technology-is-coming-soon, Future of Glass Technology is coming soon,, 61 | "https://www.mepits.com/tutorial/513/Biomedical/With-Electronic-Telepathy-and-Electronic-telepathy-Tattoos,-Your-future-is-bright", With Electronic Telepathy and Electronic telepathy Tattoos, Your future is bright, 62 | https://www.mepits.com/tutorial/512/Trending-Technologies/Two-Sided-Transparent-Touchscreens, Two Sided Transparent Touchscreens,, 63 | https://www.mepits.com/tutorial/511/Nanotechnology/Nano-Pixel-Display-, Nano Pixel Display,, 64 | https://www.mepits.com/tutorial/510/Trending-Technologies/Wearable-Computers-, Wearable Computers,, 65 | https://www.mepits.com/tutorial/509/Wireless/Flying-Car, Flying Car,, 66 | https://www.mepits.com/tutorial/508/Robotics/Humanoid-Robots, Humanoid Robots,, 67 | https://www.mepits.com/tutorial/507/Trending-Technologies/Eye-Tap, Eye Tap,, 68 | https://www.mepits.com/tutorial/505/Trending-Technologies/Touch-Screen-Technology---How-it-works-and-Different-Types, Touch Screen Technology - How it works and Different Types,, 69 | https://www.mepits.com/tutorial/504/Trending-Technologies/Skinput, Skinput,, 70 | https://www.mepits.com/tutorial/503/Trending-Technologies/Wearable-Technology---Google-Smart-Lens, Wearable Technology - Google Smart Lens,, 71 | https://www.mepits.com/tutorial/501/Trending-Technologies/Google-Glass-Wearable-Technology, Google Glass-Wearable Technology,, 72 | https://www.mepits.com/tutorial/500/Trending-Technologies/inFORM:-Interacting-With-a-Dynamic-Shape-Display, inFORM: Interacting With a Dynamic Shape Display,, 73 | https://www.mepits.com/tutorial/499/Basic-Electronics/Propeller-Clock, Propeller Clock,, 74 | https://www.mepits.com/tutorial/498/Robotics/Mind-Controlled-Robot, Mind Controlled Robot,, 75 | https://www.mepits.com/tutorial/497/Electrical/Electrical-Earthing/Grounding, Electrical Earthing/Grounding,, 76 | https://www.mepits.com/tutorial/496/Trending-Technologies/Electric-Cars--Changing-the-Shape-of-a-Sustainable-Future, Electric Cars- Changing the Shape of a Sustainable Future,, 77 | https://www.mepits.com/tutorial/495/Electrical/Spray-Technology-to-Create-Solar-Panels, Spray Technology to Create Solar Panels,, 78 | https://www.mepits.com/tutorial/494/Trending-Technologies/Grating-Light-Valve-Display-Technology, Grating Light Valve Display Technology,, 79 | "https://www.mepits.com/tutorial/493/Trending-Technologies/Electronic-Paper,-An-Innovation-In-Paperback-World", Electronic Paper, An Innovation In Paperback World, 80 | https://www.mepits.com/tutorial/492/Android/How-to-extend-Android-Smartphone-Battery-Life, How to extend Android Smartphone Battery Life,, 81 | https://www.mepits.com/tutorial/491/Trending-Technologies/Invisible-Bike-Helmet, Invisible Bike Helmet,, 82 | https://www.mepits.com/tutorial/490/Trending-Technologies/Blu-ray-Disc-, Blu-ray Disc,, 83 | https://www.mepits.com/tutorial/489/Biomedical/Finger-Reader-Reads-Printed-Text-Aloud-for-visually-impaired-persons--Talk-to-the-Hand--, Finger Reader Reads Printed Text Aloud for visually impaired persons -Talk to the Hand,, 84 | https://www.mepits.com/tutorial/488/Biomedical/Smart-Bandage, Smart Bandage,, 85 | https://www.mepits.com/tutorial/487/Trending-Technologies/Windows-10, Windows 10,, 86 | https://www.mepits.com/tutorial/486/Robotics/Machine-Vision, Machine Vision,, 87 | https://www.mepits.com/tutorial/485/Trending-Technologies/Teslasuit:-real-gaming-experience, Teslasuit: real gaming experience,, 88 | https://www.mepits.com/tutorial/484/Biomedical/Brain-mapping, Brain mapping,, 89 | https://www.mepits.com/tutorial/483/Biomedical/Bioprinting, Bioprinting,, 90 | https://www.mepits.com/tutorial/482/Nanotechnology/Current-and-Future-Applications-of-Carbon-Nanotubes, Current and Future Applications of Carbon Nanotubes,, 91 | https://www.mepits.com/tutorial/481/Electrical/Power-Factor-Correction, Power Factor Correction,, 92 | https://www.mepits.com/tutorial/479/Latest-Technologies/Nanowire-Battery, Nanowire Battery,, 93 | https://www.mepits.com/tutorial/478/Latest-Technologies/Nantenna, Nantenna,, 94 | https://www.mepits.com/tutorial/477/Electrical/Aircraft-Electrical-System, Aircraft Electrical System,, 95 | https://www.mepits.com/tutorial/476/Trending-Technologies/Intel-Curie-, Intel Curie,, 96 | https://www.mepits.com/tutorial/473/Latest-Technologies/Chewing-Gum-as-Sensors, Chewing Gum as Sensors,, 97 | https://www.mepits.com/tutorial/472/Electrical/Electric-Fuse, Electric Fuse,, 98 | https://www.mepits.com/tutorial/471/Latest-Technologies/Telemedicine, Telemedicine,, 99 | https://www.mepits.com/tutorial/469/Latest-Technologies/Acoustic-Tweezers, Acoustic Tweezers,, 100 | https://www.mepits.com/tutorial/468/DSP/Eyeglass-Free-Display, Eyeglass Free Display,, 101 | https://www.mepits.com/tutorial/467/Nanotechnology/Power-Paper:-Paper-that-store-electricity, Power Paper: Paper that store electricity,, 102 | https://www.mepits.com/tutorial/466/Trending-Technologies/Gravity-to-Energy:-A-New-Concept%E2%80%A6, Gravity to Energy: A New Concept…,, 103 | https://www.mepits.com/tutorial/461/Electrical/Heat-Exchangers, Heat Exchangers,, 104 | https://www.mepits.com/tutorial/460/Electrical/Solar-Concentrators-, Solar Concentrators,, 105 | https://www.mepits.com/tutorial/459/Electrical/Maximum-Power-Point-Tracking-(MPPT), Maximum Power Point Tracking (MPPT),, 106 | https://www.mepits.com/tutorial/458/Raspberry-Pi/New-Raspberry-Pi-Zero-, New Raspberry-Pi Zero,, 107 | https://www.mepits.com/tutorial/457/Electrical/Solar-Flat-Plate-Collectors, Solar Flat Plate Collectors,, 108 | https://www.mepits.com/tutorial/456/Electrical/Solar-Pond, Solar Pond,, 109 | https://www.mepits.com/tutorial/455/Electrical/Solar-Cooker, Solar Cooker,, 110 | https://www.mepits.com/tutorial/454/Trending-Technologies/RedTacton-Technology, RedTacton Technology,, 111 | https://www.mepits.com/tutorial/453/Basic-Electronics/Basic-terms-in-lighting-system, Basic terms in lighting system,, 112 | https://www.mepits.com/tutorial/452/Trending-Technologies/Sniffer-for-Detecting-Lost-Mobiles, Sniffer for Detecting Lost Mobiles,, 113 | https://www.mepits.com/tutorial/451/Basic-Electronics/Fuel-Cell, Fuel Cell,, 114 | https://www.mepits.com/tutorial/450/Electrical/Daylight-Integration-with-Lighting-system, Daylight Integration with Lighting system,, 115 | https://www.mepits.com/tutorial/449/Electrical/Broadband-over-Powerlines, Broadband over Powerlines,, 116 | https://www.mepits.com/tutorial/447/Electrical/Demand-Side-Management-Tutorial, Demand Side Management Tutorial,, 117 | https://www.mepits.com/tutorial/446/New-Technology/Psychoacoustics, Psychoacoustics,, 118 | https://www.mepits.com/tutorial/444/Embedded-System/-VxWorks-and-RTLinux-RTOS, VxWorks and RTLinux RTOS,, 119 | https://www.mepits.com/tutorial/443/Basic-Electronics/LED-Lighting, LED Lighting,, 120 | https://www.mepits.com/tutorial/442/Communication/Firewire, Firewire,, 121 | https://www.mepits.com/tutorial/439/Active-Component/Diode--Types, Diode- Types,, 122 | https://www.mepits.com/tutorial/432/Active-Component/Bilayer-Graphene-Transistor, Bilayer Graphene Transistor,, 123 | https://www.mepits.com/tutorial/431/PIC/Introduction-to-PIC16F877, Introduction to PIC16F877,, 124 | https://www.mepits.com/tutorial/430/Raspberry-Pi/Solar-Powered-Raspberry-Pi, Solar Powered Raspberry Pi,, 125 | https://www.mepits.com/tutorial/429/Active-Component/How-to-code-SMD-Capacitors?, How to code SMD Capacitors?,, 126 | https://www.mepits.com/tutorial/428/Trending-Technologies/Blue-Brain-, Blue Brain,, 127 | https://www.mepits.com/tutorial/427/Basic-Electronics/PCB-Design-Ideas-with-EAGLE, PCB Design Ideas with EAGLE,, 128 | https://www.mepits.com/tutorial/426/Electrical/How-to-design-a-Step-up-and-Step-Down-Auto-transformer?-, How to design a Step up and Step Down Auto transformer?,, 129 | https://www.mepits.com/tutorial/425/Android/Types-of-Mobile-Operating-Systems, Types of Mobile Operating Systems,, 130 | https://www.mepits.com/tutorial/422/Basic-Electronics/Spintronics, Spintronics,, 131 | https://www.mepits.com/tutorial/421/VLSI/System-on-Chip, System on Chip,, 132 | https://www.mepits.com/tutorial/419/Electronics-Devices/LIDAR-, LIDAR,, 133 | https://www.mepits.com/tutorial/418/Electrical/Tips-and-Tricks:-Transformer-, Tips and Tricks: Transformer,, 134 | https://www.mepits.com/tutorial/417/Biomedical/Iris-Scanning, Iris Scanning,, 135 | https://www.mepits.com/tutorial/416/Biomedical/CT-Scanning, CT Scanning,, 136 | https://www.mepits.com/tutorial/415/Communication/Radar, Radar,, 137 | https://www.mepits.com/tutorial/413/Basic-Electronics/Smart-Cards, Smart Cards,, 138 | "https://www.mepits.com/tutorial/407/Active-Component/Transistor,-FET-Biasing", Transistor, FET Biasing, 139 | https://www.mepits.com/tutorial/406/Basic-Electronics/PLL, PLL,, 140 | https://www.mepits.com/tutorial/405/Communication/Software-Defined-Radio, Software Defined Radio,, 141 | https://www.mepits.com/tutorial/404/Basic-Electronics/Resonator, Resonator,, 142 | https://www.mepits.com/tutorial/403/Trending-Technologies/Project-Oxygen, Project Oxygen,, 143 | https://www.mepits.com/tutorial/402/Trending-Technologies/WiSee, WiSee,, 144 | https://www.mepits.com/tutorial/401/Basic-Electronics/LASER, LASER,, 145 | https://www.mepits.com/tutorial/399/Electrical/DC-Generator, DC Generator,, 146 | https://www.mepits.com/tutorial/397/VLSI/Chameleon-Chip, Chameleon Chip,, 147 | https://www.mepits.com/tutorial/396/DSP/Watermarking, Watermarking,, 148 | https://www.mepits.com/tutorial/393/Electrical/Circuit-Breaker, Circuit Breaker,, 149 | https://www.mepits.com/tutorial/391/Communication/Internet-of-Things, Internet of Things,, 150 | https://www.mepits.com/tutorial/390/VLSI/Clean-room, Clean room,, 151 | https://www.mepits.com/tutorial/389/Trending-Technologies/Smart-Dust, Smart Dust,, 152 | https://www.mepits.com/tutorial/388/Basic-Electronics/Number-System-Conversions, Number System Conversions,, 153 | https://www.mepits.com/tutorial/387/Biomedical/Bionic-Human, Bionic Human,, 154 | https://www.mepits.com/tutorial/384/VLSI/Steps-for-IC-manufacturing, Steps for IC manufacturing,, 155 | https://www.mepits.com/tutorial/383/Trending-Technologies/Whispering-Gallery, Whispering Gallery,, 156 | https://www.mepits.com/tutorial/382/Basic-Electronics/Waveguides, Waveguides,, 157 | https://www.mepits.com/tutorial/379/Electrical/Motor-Driver-, Motor Driver,, 158 | https://www.mepits.com/tutorial/374/Electrical/How-to-choose-the-right-solar-inverter-and-battery-at-home?, How to choose the right solar inverter and battery at home?,, 159 | https://www.mepits.com/tutorial/373/Trending-Technologies/Motion-Powered-Electronics, Motion Powered Electronics,, 160 | "https://www.mepits.com/tutorial/370/Basic-Electronics/A-Simple-Guide:-To-Make-a-PCB-at-Home-,-To-Solder-Components-to-PCB", A Simple Guide: To Make a PCB at Home , To Solder Components to PCB, 161 | https://www.mepits.com/tutorial/369/Trending-Technologies/Robo-Pancreas:-An-Artificial-Pancreas, Robo-Pancreas: An Artificial Pancreas,, 162 | https://www.mepits.com/tutorial/364/Basic-Electronics/Graphene-Electronics--Latest-Developments, Graphene Electronics- Latest Developments,, 163 | https://www.mepits.com/tutorial/363/Android/SmartWatch-Operating-Systems, SmartWatch Operating Systems,, 164 | https://www.mepits.com/tutorial/361/Trending-Technologies/Valleytronics, Valleytronics,, 165 | https://www.mepits.com/tutorial/360/Trending-Technologies/Powerwall-, Powerwall,, 166 | https://www.mepits.com/tutorial/355/Trending-Technologies/Quantum-Computing, Quantum Computing,, 167 | https://www.mepits.com/tutorial/354/Trending-Technologies/Printed-Electronics---An-Innovation-To-Printed-Circuits, Printed Electronics - An Innovation To Printed Circuits,, 168 | https://www.mepits.com/tutorial/346/Nanotechnology/Nanotube-RFID, Nanotube RFID,, 169 | https://www.mepits.com/tutorial/345/AVR/-8051/RFID-Interfacing-with-8051-Microcontroller, RFID Interfacing with 8051 Microcontroller,, 170 | "https://www.mepits.com/tutorial/344/PIC/Peripheral-Interface-Controller,-Best-for-DIY-Projects", Peripheral Interface Controller, Best for DIY Projects, 171 | "https://www.mepits.com/tutorial/343/Trending-Technologies/Microsoft-HoloLens,-Windows-10", Microsoft HoloLens, Windows 10, 172 | https://www.mepits.com/tutorial/342/VLSI/Moletronics--Technology-After-ULSI, Moletronics- Technology After ULSI,, 173 | https://www.mepits.com/tutorial/337/Communication/Vital-Radio:-A-Smart-Home-Technology-Monitoring-Health-Status, Vital-Radio: A Smart Home Technology Monitoring Health Status,, 174 | https://www.mepits.com/tutorial/334/Trending-Technologies/Wearable-Tech---BrainPort-Vision-Device-Technology-for-the-Blind, Wearable Tech - BrainPort Vision Device Technology for the Blind,, 175 | https://www.mepits.com/tutorial/333/DSP/Adaptive-Brain-Interface, Adaptive Brain Interface,, 176 | https://www.mepits.com/tutorial/332/AVR/-8051/How-to-interface-computers-Serial-Port-(RS232)-with-Atmel-AT89S51/89S52-Microcontroller?, How to interface computers Serial Port (RS232) with Atmel AT89S51/89S52 Microcontroller?,, 177 | https://www.mepits.com/tutorial/327/Electrical/Solar-Water-Heater--Device-Utillizing-Solar-Energy, Solar Water Heater- Device Utillizing Solar Energy,, 178 | https://www.mepits.com/tutorial/326/Communication/Mobile-Phone-Jammer-How-it-works?-Application-Sectors, Mobile Phone Jammer-How it works? Application Sectors,, 179 | https://www.mepits.com/tutorial/322/Nanotechnology/Nanoparticles-for-Targeted-Drug-Delivery, Nanoparticles for Targeted Drug Delivery,, 180 | https://www.mepits.com/tutorial/321/Trending-Technologies/Zero-Touch:-Next-Generation-Multi-Touch-System, Zero Touch: Next Generation Multi-Touch System,, 181 | "https://www.mepits.com/tutorial/316/Communication/Set-top-box-Hardware-Components-,-How-to-connect-set-top-box-to-TV?", Set top box Hardware Components , How to connect set top box to TV?, 182 | https://www.mepits.com/tutorial/314/Trending-Technologies/Smart-Keyboard, Smart Keyboard,, 183 | https://www.mepits.com/tutorial/313/Trending-Technologies/Digital-Pen-and-Paper, Digital Pen and Paper,, 184 | https://www.mepits.com/tutorial/305/Robotics/Wearable-Device---Learn-Skating-with-Rollkers-Motorized-Skates, Wearable Device - Learn Skating with Rollkers Motorized Skates,, 185 | https://www.mepits.com/tutorial/304/Robotics/Tutorial---What-is-Mechatronics?, Tutorial - What is Mechatronics?,, 186 | https://www.mepits.com/tutorial/303/Instrumentation/Sensors, Sensors,, 187 | https://www.mepits.com/tutorial/301/ARM/Interfacing-on-NXP-LPC2378-ARM7---LCD, Interfacing on NXP LPC2378 ARM7 - LCD,, 188 | https://www.mepits.com/tutorial/300/Embedded-System/RTOS---Real-Time-Operating-System-, RTOS - Real Time Operating System,, 189 | https://www.mepits.com/tutorial/299/Embedded-System/Embedded-Systems-in-Automobiles---A-Boon-to-Automobile-Industry, Embedded Systems in Automobiles - A Boon to Automobile Industry,, 190 | "https://www.mepits.com/tutorial/297/AVR/-8051/Interfacing-On-Atmel-Microcontroller-AT89S51/52/53-Development-Board-7-segment-Display,-LCD,-Buzzer", Interfacing On Atmel Microcontroller AT89S51/52/53 Development Board-7 segment Display, LCD, Buzzer 191 | https://www.mepits.com/tutorial/296/DSP/Digital-Light-Processing, Digital Light Processing,, 192 | https://www.mepits.com/tutorial/291/Basic-Electronics/Ring-and-Johnson-Counter, Ring and Johnson Counter,, 193 | "https://www.mepits.com/tutorial/290/Trending-Technologies/Walk-N-Charge,-New-Technology", Walk N Charge, New Technology, 194 | https://www.mepits.com/tutorial/289/Basic-Electronics/Tips-and-Tricks:-Working-with-Wires-, Tips and Tricks: Working with Wires,, 195 | "https://www.mepits.com/tutorial/288/AVR/-8051/8051-Microcontroller,-Embedded-C-Programming", 8051 Microcontroller, Embedded C Programming, 196 | "https://www.mepits.com/tutorial/287/Biomedical/Medical-Electronics,-Present-and-Future-Technology", Medical Electronics, Present and Future Technology, 197 | https://www.mepits.com/tutorial/286/VLSI/Neuromorphic-Chip, Neuromorphic Chip,, 198 | "https://www.mepits.com/tutorial/285/Basic-Electronics/Electronic-Color-Code--Capacitor,-Resistor-Color-Code", Electronic Color Code- Capacitor, Resistor Color Code, 199 | https://www.mepits.com/tutorial/284/Biomedical/Applications-of-Haptic-Technology, Applications of Haptic Technology,, 200 | https://www.mepits.com/tutorial/283/Matlab/Graphical-User-Interface, Graphical User Interface,, 201 | "https://www.mepits.com/tutorial/282/VLSI/Organic-Microprocessor,-Latest-Processor", Organic Microprocessor, Latest Processor, 202 | https://www.mepits.com/tutorial/281/Communication/SIM-Card, SIM Card,, 203 | "https://www.mepits.com/tutorial/280/Communication/Terabit-Ethernet,-Future-Technology", Terabit Ethernet, Future Technology, 204 | https://www.mepits.com/tutorial/279/Basic-Electronics/Memristor, Memristor,, 205 | https://www.mepits.com/tutorial/278/Basic-Electronics/3D-Camera-and-3D-Scanner, 3D Camera and 3D Scanner,, 206 | https://www.mepits.com/tutorial/277/Basic-Electronics/Organic-Electronics--Transform-The-Way-to-Interact-With-New-Technology, Organic Electronics- Transform The Way to Interact With New Technology,, 207 | "https://www.mepits.com/tutorial/276/Basic-Electronics/Human-Machine-Interface,-HMI", Human Machine Interface, HMI, 208 | "https://www.mepits.com/tutorial/275/Trending-Technologies/Project-Loon,-Internet-For-Everyone", Project Loon, Internet For Everyone, 209 | "https://www.mepits.com/tutorial/273/Basic-Electronics/Display-and-their-Types--Current,-Emerging-Display-Technologies", Display and their Types- Current, Emerging Display Technologies, 210 | https://www.mepits.com/tutorial/272/Trending-Technologies/Holographic-Display, Holographic Display,, 211 | https://www.mepits.com/tutorial/271/Wireless/Tips-and-Tricks:-Wireless-Home-Networking, Tips and Tricks: Wireless Home Networking,, 212 | https://www.mepits.com/tutorial/270/Trending-Technologies/Application-of-3D-printing, Application of 3D printing,, 213 | "https://www.mepits.com/tutorial/269/Trending-Technologies/Flexible-electronics,-New-Technology-for-Flexible-Devices", Flexible electronics, New Technology for Flexible Devices, 214 | https://www.mepits.com/tutorial/268/Trending-Technologies/Braingate-Brain-Computer-Interface-System, Braingate-Brain Computer Interface System,, 215 | https://www.mepits.com/tutorial/266/Communication/WiMAX---Worldwide-Interoperability-for-Microwave-Access, WiMAX - Worldwide Interoperability for Microwave Access,, 216 | "https://www.mepits.com/tutorial/264/Trending-Technologies/Nanobuds,-Touch-Sensor-", Nanobuds, Touch Sensor, 217 | https://www.mepits.com/tutorial/262/Trending-Technologies/Electronic-Nose-Based-on-Sensor-Technology, Electronic Nose Based on Sensor Technology,, 218 | https://www.mepits.com/tutorial/261/VLSI/Emerging-Memory-Technologies, Emerging Memory Technologies,, 219 | https://www.mepits.com/tutorial/259/Arduino/Intel-Galileo-%E2%80%93-Best-Development-Board-for-DIY-Projects, Intel Galileo – Best Development Board for DIY Projects,, 220 | https://www.mepits.com/tutorial/258/Android/How-to-Use-UDOO, How to Use UDOO,, 221 | https://www.mepits.com/tutorial/257/Robotics/New-Trends-in-Robotics, New Trends in Robotics,, 222 | https://www.mepits.com/tutorial/256/Communication/GPRS-Technology, GPRS Technology,, 223 | https://www.mepits.com/tutorial/255/VLSI/MEMS-, MEMS,, 224 | https://www.mepits.com/tutorial/254/Wireless/Wireless-Transceiver-Technology-For-Medical-Devices, Wireless Transceiver Technology For Medical Devices,, 225 | "https://www.mepits.com/tutorial/253/Wireless/Latest,-Emerging-Wireless-Technologies-", Latest, Emerging Wireless Technologies, 226 | "https://www.mepits.com/tutorial/252/Instrumentation/DCS,-Industrial-Control-System", DCS, Industrial Control System, 227 | "https://www.mepits.com/tutorial/251/Trending-Technologies/Biochip,-New-Technology", Biochip, New Technology, 228 | https://www.mepits.com/tutorial/250/Basic-Electronics/How-LCD-TV-Works?, How LCD TV Works?,, 229 | https://www.mepits.com/tutorial/248/Trending-Technologies/The-Miracles-of-Water-Based-Nuclear-Powered-Battery, The Miracles of Water Based Nuclear Powered Battery,, 230 | https://www.mepits.com/tutorial/247/Electrical/Bio-battery-%E2%80%93-The-battery-of-future, Bio battery – The battery of future,, 231 | https://www.mepits.com/tutorial/246/Electrical/Types-of-battery-chargers-and-their-working, Types of battery chargers and their working,, 232 | https://www.mepits.com/tutorial/245/Electronics-Devices/Proximity-Sensors-Can-Sensors-Detect-Presence-of-Objects-Without-Contact?, Proximity Sensors-Can Sensors Detect Presence of Objects Without Contact?,, 233 | https://www.mepits.com/tutorial/244/Trending-Technologies/Using-the-Perovskite-Solar-Cell-in-Our-Life, Using the Perovskite Solar Cell in Our Life,, 234 | https://www.mepits.com/tutorial/243/Active-Component/Tunnel-Diode-Type-of-Semiconductor-Diode, Tunnel Diode-Type of Semiconductor Diode,, 235 | https://www.mepits.com/tutorial/242/Electrical/Quantum-Solar-Cell--A-Boon-in-the-World-of-Solar-Panels, Quantum Solar Cell- A Boon in the World of Solar Panels,, 236 | https://www.mepits.com/tutorial/241/Communication/Smart-Antenna, Smart Antenna,, 237 | https://www.mepits.com/tutorial/239/Basic-Electronics/RFID--A-Technology-Better-Than-Barcodes, RFID- A Technology Better Than Barcodes,, 238 | https://www.mepits.com/tutorial/238/Basic-Electronics/Internal-Structure-of-Pendrive, Internal Structure of Pendrive,, 239 | https://www.mepits.com/tutorial/237/New-Technology/Printer-Types, Printer Types,, 240 | "https://www.mepits.com/tutorial/236/DSP/DSLR-Camera,-Have-a-different-Vision", DSLR Camera, Have a different Vision, 241 | https://www.mepits.com/tutorial/234/Electrical/Transformer-Basics-and-Types, Transformer Basics and Types,, 242 | https://www.mepits.com/tutorial/233/Instrumentation/PLC, PLC,, 243 | https://www.mepits.com/tutorial/231/Electrical/Megger-And-Its-types, Megger And Its types,, 244 | https://www.mepits.com/tutorial/229/Instrumentation/Pen---Digital-Pen-And-Active-Pen, Pen - Digital Pen And Active Pen,, 245 | https://www.mepits.com/tutorial/226/Trending-Technologies/Light-Emitting-Polymer, Light Emitting Polymer,, 246 | https://www.mepits.com/tutorial/225/Electrical/ELCB--Device-For-Earth-Leakage-Protection, ELCB- Device For Earth Leakage Protection,, 247 | https://www.mepits.com/tutorial/224/Basic-Electronics/Charge-Coupled-Device-(CCD)-, Charge-Coupled Device (CCD),, 248 | https://www.mepits.com/tutorial/223/Communication/HSDPA, HSDPA,, 249 | https://www.mepits.com/tutorial/222/Electrical/Transducer, Transducer,, 250 | https://www.mepits.com/tutorial/221/Electrical/Incandescent-Light-Bulb, Incandescent Light Bulb,, 251 | https://www.mepits.com/tutorial/220/Electrical/Single-Phase-Induction-Motor, Single Phase Induction Motor,, 252 | https://www.mepits.com/tutorial/209/Electrical/Switched-Mode-Power-Supply, Switched Mode Power Supply,, 253 | https://www.mepits.com/tutorial/208/Communication/Orthogonal-Frequency-Division-Multiplexing-, Orthogonal Frequency Division Multiplexing,, 254 | https://www.mepits.com/tutorial/207/VLSI/NOC-vs-SOC, NOC vs SOC,, 255 | https://www.mepits.com/tutorial/206/Trending-Technologies/Bionic-Eye, Bionic Eye,, 256 | https://www.mepits.com/tutorial/205/Trending-Technologies/Jetpack-and-Its-Types, Jetpack and Its Types,, 257 | https://www.mepits.com/tutorial/204/Electrical/DC-Motor, DC Motor,, 258 | https://www.mepits.com/tutorial/203/Basic-Electronics/Simple-Ways-to-Learn-Network-Analysis-Using-Circuit-Theorems, Simple Ways to Learn Network Analysis Using Circuit Theorems,, 259 | https://www.mepits.com/tutorial/201/Electrical/Kirchoffs-Law, Kirchoffs Law,, 260 | https://www.mepits.com/tutorial/200/Electrical/Windmill, Windmill,, 261 | https://www.mepits.com/tutorial/198/Biomedical/Smart-Tattoos, Smart Tattoos,, 262 | https://www.mepits.com/tutorial/197/Trending-Technologies/OLED, OLED,, 263 | https://www.mepits.com/tutorial/196/Biomedical/Powered-Exoskeletons, Powered Exoskeletons,, 264 | https://www.mepits.com/tutorial/195/Trending-Technologies/Bionic-Fingers, Bionic Fingers,, 265 | https://www.mepits.com/tutorial/194/ARM/ARM, ARM,, 266 | https://www.mepits.com/tutorial/193/Basic-Electronics/Smart-Sensors, Smart Sensors,, 267 | https://www.mepits.com/tutorial/191/Trending-Technologies/Augmented-Reality, Augmented Reality,, 268 | https://www.mepits.com/tutorial/190/VLSI/3D-IC, 3D IC,, 269 | https://www.mepits.com/tutorial/189/DSP/Non-Visible-Imaging, Non-Visible Imaging,, 270 | https://www.mepits.com/tutorial/188/Android/Android-v/s-Windows, Android v/s Windows,, 271 | https://www.mepits.com/tutorial/187/Basic-Electronics/Transparent-Electronics, Transparent Electronics,, 272 | https://www.mepits.com/tutorial/186/Trending-Technologies/Smart-Watch, Smart Watch,, 273 | https://www.mepits.com/tutorial/184/Trending-Technologies/Golden-i-3.8-%E2%80%93-Wearable-Computer, Golden-i 3.8 – Wearable Computer,, 274 | https://www.mepits.com/tutorial/183/VLSI/NRAM-, NRAM,, 275 | https://www.mepits.com/tutorial/182/Trending-Technologies/Artificial-Skin, Artificial Skin,, 276 | https://www.mepits.com/tutorial/181/Trending-Technologies/3D-TV, 3D TV,, 277 | https://www.mepits.com/tutorial/180/Biomedical/Wearable-Biosensors, Wearable Biosensors,, 278 | https://www.mepits.com/tutorial/179/Trending-Technologies/Google-Driverless-Car--Self-Driving-Car, Google Driverless Car- Self Driving Car,, 279 | https://www.mepits.com/tutorial/178/Trending-Technologies/Nano-Robotics, Nano Robotics,, 280 | https://www.mepits.com/tutorial/177/Trending-Technologies/Audio-Spot-Light, Audio Spot Light,, 281 | https://www.mepits.com/tutorial/176/Biomedical/Medical-Mirror, Medical Mirror,, 282 | "https://www.mepits.com/tutorial/175/Communication/5G,-Mobile-Technology", 5G, Mobile Technology, 283 | https://www.mepits.com/tutorial/174/DSP/Sixth-Sense, Sixth Sense,, 284 | https://www.mepits.com/tutorial/173/Biomedical/BCI---Brain-Computer-Interface, BCI - Brain Computer Interface,, 285 | https://www.mepits.com/tutorial/171/Biomedical/Electronic-Pill, Electronic Pill,, 286 | https://www.mepits.com/tutorial/170/Electrical/UPS, UPS,, 287 | https://www.mepits.com/tutorial/169/VLSI/Application-Specific-Integrated-Circuit, Application Specific Integrated Circuit,, 288 | https://www.mepits.com/tutorial/166/Communication/Li-Fi, Li-Fi,, 289 | https://www.mepits.com/tutorial/162/Electrical/Solar-Panels, Solar Panels,, 290 | https://www.mepits.com/tutorial/156/Embedded-System/Embedded-System, Embedded System,, 291 | "https://www.mepits.com/tutorial/148/Communication/CDMA,-Code-Division-Multiple-Access", CDMA, Code Division Multiple Access, 292 | https://www.mepits.com/tutorial/147/VLSI/Advanced-Microcontroller-Bus-Architecture, Advanced Microcontroller Bus Architecture,, 293 | https://www.mepits.com/tutorial/144/Communication/Antenna, Antenna,, 294 | https://www.mepits.com/tutorial/143/VLSI/Hardware-Description-Language, Hardware Description Language,, 295 | https://www.mepits.com/tutorial/142/Communication/HDMI, HDMI,, 296 | https://www.mepits.com/tutorial/141/Communication/UART, UART,, 297 | https://www.mepits.com/tutorial/140/Communication/GSM, GSM,, 298 | https://www.mepits.com/tutorial/137/Basic-Electronics/Memory, Memory,, 299 | https://www.mepits.com/tutorial/134/Basic-Electronics/Electronic-Instruments-Commonly-used-in-Electronics-Lab, Electronic Instruments Commonly used in Electronics Lab,, 300 | https://www.mepits.com/tutorial/127/Basic-Electronics/Astable-and-Monostable-Multivibrator-Using-555-Timer-IC, Astable and Monostable Multivibrator Using 555 Timer IC,, 301 | https://www.mepits.com/tutorial/125/Electrical/Isolator, Isolator,, 302 | https://www.mepits.com/tutorial/124/Basic-Electronics/Oscillators, Oscillators,, 303 | https://www.mepits.com/tutorial/123/VLSI/Integrated-Circuit, Integrated Circuit,, 304 | https://www.mepits.com/tutorial/116/Communication/CAN-Bus, CAN Bus,, 305 | "https://www.mepits.com/tutorial/112/Electrical/Wireless-Electricity,-A-future-form-of-Power-Transmission-Using-Inductive-Coupling", Wireless Electricity, A future form of Power Transmission Using Inductive Coupling, 306 | https://www.mepits.com/tutorial/103/Active-Component/Unijunction-transistor, Unijunction transistor,, 307 | https://www.mepits.com/tutorial/102/Basic-Electronics/ADC, ADC,, 308 | https://www.mepits.com/tutorial/101/AVR/-8051/Depths-of-Atmel-Atmega, Depths of Atmel Atmega,, 309 | https://www.mepits.com/tutorial/99/AVR/-8051/Hardware-Programmers-for-Microcontrollers, Hardware Programmers for Microcontrollers,, 310 | https://www.mepits.com/tutorial/93/Basic-Electronics/Voltage-regulators, Voltage regulators,, 311 | https://www.mepits.com/tutorial/91/Active-Component/Triac-, Triac,, 312 | https://www.mepits.com/tutorial/80/VLSI/Programmable-Logic-Device-(PLD), Programmable Logic Device (PLD),, 313 | https://www.mepits.com/tutorial/72/Passive-Component/Resistors, Resistors,, 314 | https://www.mepits.com/tutorial/68/Active-Component/Inductor, Inductor,, 315 | https://www.mepits.com/tutorial/65/Passive-Component/Capacitors, Capacitors,, 316 | https://www.mepits.com/tutorial/64/Communication/USB, USB,, 317 | https://www.mepits.com/tutorial/39/Communication/Communication-System, Communication System,, 318 | https://www.mepits.com/tutorial/32/Active-Component/SCR, SCR,, 319 | "https://www.mepits.com/tutorial/29/Basic-Electronics/Logic-Families---TTL,-CMOS,-ECL", Logic Families - TTL, CMOS, ECL 320 | https://www.mepits.com/tutorial/27/Active-Component/MOSFET-Transistor---Electronic-Component, MOSFET Transistor - Electronic Component,, 321 | https://www.mepits.com/tutorial/26/Active-Component/JFET---Electronic-Component, JFET - Electronic Component,, 322 | "https://www.mepits.com/tutorial/25/Active-Component/Bipolar-Junction-Transistor---NPN-Transistor,-PNP-Transistor", Bipolar Junction Transistor - NPN Transistor, PNP Transistor, 323 | "https://www.mepits.com/tutorial/22/Basic-Electronics/Zener-Diode-Tutorial---Working,-Applications", Zener Diode Tutorial - Working, Applications, 324 | -------------------------------------------------------------------------------- /tp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-vishal/Tutorials-Downloader/c07e321e9992e83b2cd7513c96b24c427f98bef2/tp.png --------------------------------------------------------------------------------