Posts

Showing posts from February, 2020

How to insert music in pendrive?

Image
How to Put Music on a Flash Drive You can use a USB flash drive to quickly transfer music files from one computer to another, save a backup of your music, or play music on devices that support a USB drive. This is great for sharing music with a friend, playing it on a stereo that supports USB, or just creating a backup. If your USB drive isn't working properly, you may need to reformat it. Insert the USB drive into a USB port on your computer.  Try to use a port directly on your computer. Avoid USB hubs, as these will lead to slower transfer speeds. Windows will usually notify you that a USB drive was inserted, and an AutoPlay window may appear. You can close the AutoPlay window for now. If this is your first time plugging the USB drive into the computer, Windows may install some drivers. This should only take a few moments. A USB hub is an external device that allows you to plug multiple USB devices into a single USB port. Open File Explorer  .  It has an

Microprocessor - 8085 Pin Configuration

Image
The following image depicts the pin diagram of 8085 Microprocessor − The pins of a 8085 microprocessor can be classified into seven groups − Address bus A15-A8, it carries the most significant 8-bits of memory/IO address. Data bus AD7-AD0, it carries the least significant 8-bit address and data bus. Control and status signals These signals are used to identify the nature of operation. There are 3 control signal and 3 status signals. Three control signals are RD, WR & ALE. RD  − This signal indicates that the selected IO or memory device is to be read and is ready for accepting data available on the data bus. WR  − This signal indicates that the data on the data bus is to be written into a selected memory or IO location. ALE  − It is a positive going pulse generated when a new operation is started by the microprocessor. When the pulse goes high, it indicates address. When the pulse goes down it indicates data. Three status signals are IO/M, S0 & S

A Multi-Protocol Infrared Remote Library for the Arduino

Image
Do you want to control your Arduino with an IR remote? Do you want to use your Arduino to control your stereo or other devices? This IR remote library lets you both send and receive IR remote codes in multiple protocols. It supports NEC, Sony SIRC, Philips RC5, Philips RC6, and raw protocols. If you want additional protocols, they are straightforward to add. The library can even be used to record codes from your remote and re-transmit them, as a minimal universal remote. To use the library, download from  github  and follow the installation instructions in the readme. How to send This infrared remote library consists of two parts: IRsend transmits IR remote packets, while IRrecv receives and decodes an IR message. IRsend uses an infrared LED connected to output pin 3. To send a message, call the send method for the desired protocol with the data to send and the number of bits to send. The  examples/IRsendDemo  sketch provides a simple example of how to send codes: #include &l