Posts

HOW BLUETOOTH BASED PROJECT CAN BE BENIFICIAL FOR THE SOCIETY AND IN WHAT PROJECTS IT CAN BE USED

Image
 What is Bluetooth?  A Bluetooth is a small wireless data transferring technology usually found in phones, computers, camera and etc. This technology can send or receive signals within 10m of area. The signal is transferred using UHF (ultra-high frequency) with the speed of 2.4 GHz.   How Bluetooth works?  For a Bluetooth to work there must be a signal transmitter or receiver within the electronic device such a phones, computers, cameras etc. To send or receive data from one device to another both the transmitting and receiving devices must these following things in common.  1. They must be within the range of 10m  2. They must have Bluetooth chip along with upgraded software  3. The software of one device must allow the Bluetooth on the other device  If the both devices are quite close to each other the signal strength will be at maximum BLUETOOTH BASED PROJECT CAN BE BENIFICIAL  Nowadays the technology has evolved so much. Those days are gone when people have to sort out wires

Use of Matrix Keypads In Different Embedded Systems Meet The Desired Needs Within realistic Constraints With Respect To Societal, Environmental And Sustainable Development

Image
  Devices :  Vending Machines   Microwave Oven   Security Keypads  Theme Park Rides control Printer  Elevators  Mentioned above are the few devices which involves the use of the matrix keypad or simple keypad. Vending machines uses the keypad to instruct specific tray in the vending machine. Microwave oven uses keypad to cook pizza, spagati, soup or heat any dish accordingly Security locks based on numeric can also use keypad. But such a keypad security lock is not much efficient In theme parks various rides are controlled through the control room and the keypad can use turn on off and control the rides Printer also use the keypad to print papers and to control the printer as well Elevator is designed to take people to the various floors and in any elevator a numeric keypad is used to do this job.  Environmental Effect :  Embedded system are environment friendly circuits. These systems does not produce any kind of the environmental pollution and also cheap in price.  Societal Ef

Ramadan 1442 / 2021 Mubarak رمضان كريم/مبارك

Image

Microsoft Visual Studio

Image
  Microsoft Visual Studio is a software by Microsoft for programmers It is one of the best integration development environment IDE for the programmers.  It comes with free and purchase version. The installation video given above will help people install the free version of Visual Studio which is the community version You can work in Python, Java, C, C#, C++. Also you can make and design android, iOS, Windows, Mac and even Linux apps in Visual Studio I personally recommend this because it is user friendly and easy to use 

Micro- Biology Books

Image
  Prescott's Principles of  Microbiology

Electrical Engineering Semester 4 Books

  SEMESTER 4  SECTION Sociology by John Macionis Download : https ://drive.google.com/file/d/1V1hMnOLJWEkkjFHQ4OgCsyD3eS6xMhBa/view?usp=drivesdk Signals and systems by Alan Oppenheim Download:  https://drive.google.com/file/d/1t1J5lV_hhsXAqIhveQ6RPpPpekTkpMOj/view?usp=sharing Solution manual https://drive.google.com/file/d/1FJKlKeOyfqqSf1etQA3-nU66FjJIJB7y/view?usp=sharing Elementary Linear Algebra by Howard Anton Edition 11 Download: https://drive.google.com/file/d/1S645ctgVytkpZlAu7WgRICK8OPmddMgw/view?usp=sharing A First Course in Probability by Sheldon M Ross 8th edition Download: https://drive.google.com/file/d/1aZVfZXAyoupvcKjbj7WeRPtvde89p9VP/view?usp=sharing Embedded System Material Download : https://drive.google.com/drive/folders/1ozaX9fpEEF9mmlIp0TwbtnbSod6e64Sm?usp=sharing Click & Download :Embedded Lab Manual  

Hello World Program in various computer Languages

Image
  Hello World ------ C # include <stdio.h> int main () { printf ( "Hello World" ); return 0 ; } Hello World ------ C++ # include <iostream> int main () { std::cout<< " Hello World" <<endl; return 0 ; } Hello World ------ C# namespace program { class program { static void Main ( string [] args ) { System.Console.WriteLine( "Hello World" ); } } } Hello World ------ Java class HelloWorld { public static void main (String[] args) { System.out.println( "Hello World" ); } } Hello World ------ Python print ( 'Hello world' )