Skip to main content

Understanding of Embedded System Concept

An embedded system is a controller with a dedicated function within a larger mechanical or electrical system, often with real-time computing constraints. It is embedded as part of a complete device often including hardware and mechanical parts. Embedded systems control many devices in common use today according to Wikipedia.

I am not going to share about definition and etc..

What i am going to share is how it work??😃😃

The three main component is Processor, RAM and Memory..Why? and What is the roles of this component?

Imagine...

👷👉 Processor
📁👉 Table as RAM
📕👉 Cabinet as Memory

You(Processor) processing data at your table(RAM). Then if you need something, get it from Cabinet(Memory) and put into the table and process it.

As simple as That!😁

In automotive industry nowadays, for instance, most of the car using radio which is not a Norma radio but intelligent radio which is connected to each ECU in the car.

This radio is most like a mini computer where it can have multiple function such as media, radio, GPS, Bluetooth, WiFi and TV..

Wow..amazing but how it work?

Comments

Popular posts from this blog

Arduino Interfacing With LCD(16x02) Without Potentiometer

All, today i gonna to share how Arduino connected to LCD(16x02). LCD 16x02 means 16 character in 2 rows. Connection between LCD and UNO Code: #include <LiquidCrystal.h> int Contrast=75;  LiquidCrystal lcd(12, 11, 5, 4, 3, 2);   void setup()  {     analogWrite(6,Contrast);      lcd.begin(16, 2);   }      void loop()  {      lcd.setCursor(0, 0);      lcd.print("ITS WORK");        lcd.setCursor(0, 1);      lcd.print("WELL DONE");  }

What You Need To Know About Battery In EV

What You Need To Know About Battery In EV Battery is used to supply power to your car. Battery have two type of terminal which is positive(anode) and negative(cathode). Generally, battery is combination single cell or multiple cell that used to generate or store energy. There are two type of battery which is primary and secondary. Primary is single used while secondary is rechargeable battery. A common primary battery is dry battery. Phone, smartwatch, others portable electronic devices and automobiles mostly used secondary battery.   Battery used in EV There have four kinds of battery using in EV car.  Lithium-ion Nickel-metal hydride Lead-acid Ultracapacitors Lithium-ion batteries Lithium-ion battery used in most electrical vehicle. It also using in our tablet, phone and other electronic devices. In 1991, Sony Corporation has produced and commercialized it first lithium-ion battery. Then, other company including Apples nowadays using it.  Takes from Apples when it ...

Ultrasonic Sensor With Arduino Uno

Yeah, Ultrasonic sensor now its working. Today i am gonna to share the code of how its work:) It quite easy. We just need to connect 4-pin which is VCC,GND,ECHO and TRG from Ultrasonic sensor to Arduino. Done:) Code : int trigger_pin = 4; int echo_pin = 2; int LED_pin = 13; int time; int distance; void setup ( ) {         Serial.begin (9600);         pinMode (trigger_pin, OUTPUT);         pinMode (echo_pin, INPUT);         pinMode (LED_pin, OUTPUT); } void loop ( ) {     digitalWrite (trigger_pin, HIGH);     delayMicroseconds (10);     digitalWrite (trigger_pin, LOW);     time = pulseIn (echo_pin, HIGH);     distance = (time * 0.034) / 2;   if (distance <= 10)         {  ...