Skip to main content

EMBEDDED SYSTEM & MATLAB INTERNSHIP PROGRAM


EMBEDDED SYSTEM INTERNSHIP PROGRAM (5 DAYS)-1500/-
Day 1
  • Introduction of Embedded system
  • Introduction of micro controllers
  • Introduction and initialization of compiler software (keil)
  • Introduction and initialization of simulation software (proteus)
Day 2
  • Introduction to Embedded C
  • Difference between C & Embedded C
  • Programming style
  • Basic structure of C program
  • Introduction of LED’s
  • Interfacing Circuit Description of LED’s
  • Programming of LED’s Interfacing
Day 3
  • Introduction to 7 Segment Display
  • Types of 7 Segment Display
  • Interfacing Circuit Description of 7 Segment Display
  • Programming of 7 Segment Display Interfacing
  • Introduction to 16 x 2 LCD
  • Commands of 16 x 2 LCD
  • Interfacing Circuit Description of 16 x 2 LCD
  • Programming of 16 x 2 LCD
Day 4
  • Introduction to 4X4 Keyboard matrix
  • Interfacing 4x4 key board matrix
  • Project work-1
Day 5
  • Project work -2
EMBEDDED SYSTEM INTERNSHIP PROGRAM (10 DAYS)
Day -1
  • Introduction of Embedded system
  • Introduction of micro controllers
  • Introduction and initialization of compiler software (keil)
  • Introduction and initialization of simulation software (proteus)
Day -2
  • Introduction to Embedded C
  • Difference between C & Embedded C
  • Programming style
  • Basic structure of C program
Day- 3
  • Introduction of LED’s
  • Interfacing Circuit Description of LED’s
  • Programming of LED’s Interfacing
  • Introduction to 7 Segment Display
  • Types of 7 Segment Display
  • Interfacing Circuit Description of 7 Segment Display
  • Programming of 7 Segment Display Interfacing
Day- 4
  • Introduction to 16 x 2 LCD
  • Commands of 16 x 2 LCD
  • Interfacing Circuit Description of 16 x 2 LCD
  • Programming of 16 x 2 LCD
  • Introduction to 4X4 Keyboard matrix
  • Interfacing 4x4 key board matrix
Day -5
  • Introduction to Motors
  • Types of Motors used in Embedded System
  • Programming & Controlling of motors in Embedded System
Day- 6
  • Introduction to Timers & Counters
  • Difference between Timer and Counter
  • Description of SFR associated with Timers & Counters
  • Programming of Timers & Counters
  • Introduction to ADC
  • Programming of ADC
Day-7
  • Project work -1
Day-8
  • Project work -2
Day-9
  • Project work-3
Day-10
  • Project work-4








MATLAB –IMAGE PROCESSING INTERNSHIP PROGRAM (5 DAYS)
Day-1
  • Introduction to matlab
  • Introduction to image processing
  • Installation of matlab software
Day-2
  • Command window, workspace, command history
  • Plots
  • Explanation of sup –Plotting functions
Day-3
  • Importing and displaying images
  • Converting between image types
  • Exporting images
  • Image Filtering
  • Graphical user interface development environment
Day-4
  • Project work -1
Day-5
  • Project work -2




MATLAB –IMAGE PROCESSING INTERNSHIP PROGRAM (10 DAYS)-3000/-
Day-1
  • Introduction to matlab
  • Introduction to image processing
  • Installation of matlab software
Day-2
  • Command window, workspace, command history
  • Plots
  • Explanation of sup –Plotting functions
Day-3
  • Importing and displaying images
  • Converting between image types
  • Exporting images
Day-4
  • Image Filtering
  • Morphological Filtering
Day-5
  • Edge detection  using different algorithms
Day-6
  • Image segmentation
  • Graphical user interface development environment
Day-7
  • Project work -1
Day-8
  • Project work -2
Day-9
  • Project work -3
Day-10

  • Project work -4

Comments

Popular posts from this blog

Jio

Reliance Jio planning its own  cryptocurrency called JioCoin  elder son Akash Ambani leading the JioCoin project, Reliance Jio plans to build a 50-member team of young professionals to work on blockchain technology, which can also be used to develop applications such as smart contracts and supply chain management logistics

garbage monitoring using arduino code with gsm

#include <SoftwareSerial.h> #include <LiquidCrystal.h> //LiquidCrystal lcd(7, 6, 5, 4, 3, 2); LiquidCrystal lcd(13, 12, 11, 10, 9, 8); SoftwareSerial mySerial(0,1); #define trigPin 2 #define echoPin 3 #define PIR_sensor 4 #define m11 5 #define m12 6 void setup() {    lcd.begin(16, 2);    lcd.print("    Garbage    ");    Serial.println("garbage ");   lcd.setCursor(0,1);   lcd.print("   Open Close    ");   Serial.println(" open close");   delay(3000);   lcd.clear();   //lcd.print(" ");   delay(2000); mySerial.begin(9600); // Setting the baud rate of GSM Module Serial.begin (9600); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT);  pinMode(m11, OUTPUT);   pinMode(m12, OUTPUT);   } void loop() {  readPIR();  pingDist();  SendMessage(); } void pingDist ()   {     long duration, distance;...