Found 409 Articles for Microcontroller

Programming 8051 using Keil Software

Chandu yadav
Updated on 27-Jun-2020 12:11:13

19K+ Views

In this section we will see how to write and execute programs for 8051 microcontroller using the Keil Software.Download KeilHere is the download link of Keil. You can download it and install it very easily. We are using C51 version for 8051 devices.https://www.keil.com/download/product/Use Keil to write programs for 8051 MicrocontrollerStart the Keil software. Go to the Project > New Project then choose a location to store your program, and give a name and Save.Now in the next window select the device from different manufacturers. We are selecting Microchip, and then by expanding we are selecting AT89C51 device and click ok.Now ... Read More

RAM Addressing of 8051 Microcontroller

Ankith Reddy
Updated on 27-Jun-2020 07:55:45

5K+ Views

Here we will see how external RAM memories can be addressed by the Intel 8051 microcontroller. There are different methods for addressing the RAMs. Now at first we will discuss about some different types of RAM memories in short.The RAM (Random Access Memory) is volatile memory. So when the power is cutting off to the RAM chip, it losses the data. RAMs are also known as RAWM (Read and Write Memory). There are basically three kinds of RAMs. These are SRAM (Static RAM), NV-RAM (Non-Volatile RAM) and DRAM (Dynamic RAM).Static RAMThe storage cell in Static RAM are made of flip-flops. ... Read More

Computer languages

Ankith Reddy
Updated on 27-Jun-2020 11:04:32

1K+ Views

There are mainly three different languages with the help of which we can develop computer programs. And they areMachine Level languageAssembly Level Language andHigh-Level LanguageMachine Level LanguageThe computer can understand only the language of Digital Electronics. Digital Electronics deals with the presence and absence of voltages. Within the computer there are two logics can play their role. These logics are −Positive Logic − Here presence of voltage will be denoted by 1 and absence of voltage will be denoted by 0Negative Logic − Here presence of voltage will be denoted by 0 and absence of voltage will be denoted by ... Read More

Differences in Microcomputer, Microprocessor and Microcontroller

Arjun Thakur
Updated on 27-Jun-2020 11:05:24

14K+ Views

Let us discuss Microcomputer, Microprocessor, and Microcontroller in this article and also to highlight their respective differences in between. MicrocomputerA microcomputer can be defined as a small sized, inexpensive, and limited capability computer. It has the same architectural block structure that is present on a computer. Present-day microcomputers are having smaller sizes. Nowadays, they are of the size of a notebook. But in the coming days also their sizes will get more reduced as well. Due to their lower costs, individuals can possess them as their personal computers. Because of mass production, they are becoming still cheaper. Initially, in the earlier ... Read More

Microcontroller Basics

Arjun Thakur
Updated on 27-Jun-2020 08:01:55

5K+ Views

A Microcontroller is a small and low-cost microcomputer, which is designed to perform the specific tasks of embedded systems like displaying microwave’s information, receiving remote signals etc.The general microcontroller consists of the processor, the memory (RAM, ROM, EPROM), Serial ports, peripherals (timers, counters) etc.Types of MicrocontrollersMicrocontrollers are divided into various categories based on memory, architecture, bits and instruction sets. Following is the list of their typesBit − Based on bit configuration, the microcontroller is further divided into three categories.8-bit microcontroller  − This type of microcontroller is used to execute arithmetic and logical operations like addition, subtraction, multiplication division, etc. For ... Read More

Microcomputer Basics

Ankith Reddy
Updated on 27-Jun-2020 08:08:39

1K+ Views

A microcomputer can be defined as a small sized, inexpensive, and limited capability computer. It has the same architectural block structure that is present in a computer. Present-day microcomputers are having smaller sizes. Nowadays, they are of the size of a notebook. But in coming days also their sizes will get more reduced as well. Due to their lower costs, individuals can possess them as their personal computers. Because of mass production they are becoming still cheaper. Initially in the earlier days they were not very much powerful. Their internal operations and instructions were very much limited and restricted. But ... Read More

Control unit and CPU

George John
Updated on 27-Jun-2020 08:10:32

3K+ Views

During the execution of a program, the control unit fetches one instruction at a time from the main memory and then executes it. In this execution process, it takes help of ALU, if the instruction execution involves arithmetic or logical operation (like AND, OR, Ex-OR). After execution of the current instruction, the CPU fetches the next instruction for execution. This process continues until the program is completed and the result is output using the output device. In many computers, the control unit and the ALU are integrated into a single block, known as Central Processing Unit (CPU).Central Processing Unit (CPU) consists ... Read More

Arithmetic Logic Unit (ALU)

Chandu yadav
Updated on 25-Oct-2023 14:19:35

23K+ Views

Inside a computer, there is an Arithmetic Logic Unit (ALU), which is capable of performing logical operations (e.g. AND, OR, Ex-OR, Invert etc.) in addition to the arithmetic operations (e.g. Addition, Subtraction etc.). The control unit supplies the data required by the ALU from memory, or from input devices, and directs the ALU to perform a specific operation based on the instruction fetched from the memory. ALU is the “calculator” portion of the computer.An arithmetic logic unit(ALU) is a major component of the central processing unit of the a computer system. It does all processes related to arithmetic and logic ... Read More

Output Devices in Computer

Arjun Thakur
Updated on 27-Jun-2020 08:38:28

526 Views

Output devices are used for displaying or recording the results computed by the computer. Most common output devices are the CRT display,  printer, and plotter.Following are some of the important output devices used in a computer.MonitorsGraphics PlotterPrinterMonitorsMonitors, commonly called a Visual Display Unit (VDU), are the main output device of a computer. It forms images from tiny dots, called pixels that are arranged in a rectangular form. The sharpness of the image depends upon the number of pixels.There are two kinds of viewing screen used for monitors.Cathode-Ray Tube (CRT)Flat-Panel DisplayCathode-Ray Tube (CRT) MonitorThe CRT display is made up of small picture elements ... Read More

Input Devices in Computer

George John
Updated on 27-Jun-2020 08:40:32

1K+ Views

The input devices are used for supplying program and data to the memory. In other words, the computer system reads the program and the data from the input devices. Most common input devices are the keyboard and mouse.Following are some of the important input devices which are used in a computer −KeyboardMouseJoy StickLight penTrack BallScannerGraphic TabletMicrophoneMagnetic Ink Card Reader(MICR)Optical Character Reader(OCR)Bar Code ReaderOptical Mark Reader(OMR)KeyboardThe keyboard is the most common and very popular input device which helps to input data to the computer. The layout of the keyboard is like that of the traditional typewriter, although there are some additional ... Read More

Advertisements