Skip to main content

Posts

Raspberry Pi and Its Models Till Now (2021)

Raspberry Pi   is a series of small  single-board computers  (SBCs) developed in the  United Kingdom  by the  Raspberry Pi Foundation  in association with  Broadcom .  The Raspberry Pi project originally leaned towards the promotion of teaching basic  computer science  in schools and in  developing countries . The original model became more popular than anticipated,   selling outside its  target market  for uses such as  robotics . It is widely used in many areas, such as for  weather monitoring ,   because of its low cost, modularity, and open design. It is typically used by computer and electronic hobbyists, due to its adoption of HDMI and USB devices. Models Of Raspberry Pi (Variants) Pi 1 Model B (2012) Pi 1 Model A (2013) Pi 1 Model B+ (2014) Pi 1 Model A+ (2014) Pi 2 Model B (2015) Pi Zero (2015) Pi 3 Model B (2016) Pi Zero W (2017) Pi 3 Model B+ (2018) Pi 3 Model A+ (2019) Pi 4 Model A (2019...
Recent posts

Everything About IoT (Internet Of Things)

IoT (Internet Of Things) The Internet of Things (IoT) describes the network of physical objects—“things”—that are embedded with sensors, software, and other technologies for the purpose of connecting and exchanging data with other devices and systems over the internet. These devices range from ordinary household objects to sophisticated industrial tools. With more than 7 billion connected IoT devices today, experts are expecting this number to grow to 10 billion by 2020 and 22 billion by 2025.   What technologies have made IoT possible? While the idea of IoT has been in existence for a long time, a collection of recent advances in a number of different technologies has made it practical. Access to low-cost, low-power sensor technology.  Affordable and reliable sensors are making IoT technology possible for more manufacturers. Connectivity.  A host of network protocols for the internet has made it easy to connect sensors to the cloud and to other “things” for efficient dat...

Arduino & Arduino IDE - Installing Process Of Arduino IDE

What is Arduino ? Arduino is an open-source hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices. If you want to learn more you can visit  arduino.cc  ( CLICK HERE TO LEARN MORE ABOUT ARDUINO.) What is Arduino IDE ? The Arduino Integrated Development Environment is a cross-platform application that is written in functions from C and C++. It is used to write and upload programs to Arduino compatible boards, but also, with the help of third-party cores, other vendor development boards. Programs written using Arduino Software (IDE) are called sketches. These sketches are written in the text editor and are saved with the file extension  .   ino . Programming languages :  C ,  Java ,  C++ I nstallation process of Arduino IDE ? For downloading Arduino IDE, we will first go to the official  Arduino website . You will see a different do...

Microcontroller

 W hat is a microc ontroller ? A   microcontroller   is a small and low-cost microcomputer, which is designed to perform the specific tasks of embedded systems. The general microcontroller consists of the processor, the memory (RAM, ROM, EPROM), Serial ports, peripherals (timers, counters), etc. A microcontroller (MCU for microcontroller unit) is  a small computer on a single  metal-oxide-semiconductor (MOS) integrated circuit (IC) chip. A microcontroller contains one or more CPUs (processor cores) along with memory and programmable input/output peripherals.( wikipedia ). Types of Microcontrollers -  Microcontrollers are divided into various categories based on memory, architecture, bits and instruction sets. Following is the list of their types − Bit 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 ad...

What is Arduino UNO

  Arduino Arduino is an open-source hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices. If you want to learn more you can visit arduino.cc What is Arduino UNO ? Arduino Uno  is a microcontroller board based on the ATmega328P ( datasheet ). It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator (CSTCE16M0V53-R0), a USB connection, a power jack, an ICSP header and a reset button. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started.. You can tinker with your Uno without worrying too much about doing something wrong, worst case scenario you can replace the chip for a few dollars and start over again. "Uno" means one in Italian and was chosen to mark the release of Arduino Soft...