Project Esy ..
Project Esy ..
NASHIK.
Date:
Department of Electronics & telecommunication Engineering
Micro-Project Report on
“Stepper motor”
Towards Fulfilment of the Third year Diploma in E&TC of institute Guru
Gobind Singh Polytechnic (Code:0369) We have successfully Complete the
micro-project Under the Guidance of Prof. S. V. Karande in the subject
Embedded system(22532) for the academic year 2024-2025 as prescribed in
the MSBTE curriculum.
Submitted by,
Seal of
the
Institute
Annexure-1A
1. Precise Position and Speed Control: Stepper motors allow for accurate control of
movement and speed in embedded systems by converting electrical pulses into discrete
mechanical steps.
2. Open-Loop Operation: They offer reliable motion control without the need for feedback
mechanisms, making them simple and cost-effective for many applications.
Action Plan: -
SR. DETAILS OF PLANNING PLANNING NAMES OF
NO. ACTTIVITY DATE FINISH DATE RESPONSIBILITY
TEAM MEMBERS
1. Introduction Of Micro 03/09/2024 03/09/2024 Bhujade Mayuri
Project
2. Discussion Of Basic 10/09/2024 10/09/2024 Naik Amruta
Idea of Micro Projects
3. Final selection of Idea 12/09/2024 12/09/2024 Kedar Bhaghyashri
of Micro Projects
4. Micro Project Material 26/09/2024 26/09/2024 Sutar Pallavi
Collection &
Preparations
5. First Review Report 28/09/2024 28/09/2024 Bhujade Mayuri
6. Second Review Report 04/10/2024 04/10/2024 Naik Amruta
7. Preparation of Report 15/10/2024 15/10/2024 Kedar Bhaghyashri
8. Demonstration of 25/10/2024 25/10/2024 Sutar Pallavi
Micro Project
Resources Required: -
In unipolar stepper motors, each phase (or coil) of the motor has a center tap, which
simplifies the drive circuitry. Unipolar motors can switch the current in the coils more
easily, but they generally provide lower torque compared to bipolar motors. This
simplicity makes unipolar motors popular in applications that don’t require high torque,
such as printers.
Microstepping:
Microstepping is a more advanced technique where the current through the windings is
controlled to create intermediate steps between full steps. This results in smoother motor
movement and finer control of the position. Microstepping is ideal for applications that
require extremely precise positioning, such as in precision milling machines or
camera gimbals.
#include<Intel/8051.h>
#include<Standard . h>
#define PHASEA 0x09
#define PHASEB 0x0C
#define PHASEC 0x06
#define PHASED 0x03
void main ( )
{
while (1)
{
P1= PHASEA ;
delay_ms (100);
P1= PHASEB ;
delay_ms (100);
P1= PHASEC;
delay_ms (100);
P1= PHASED ;
delay_ms (100);
}
}
#include<reg51.h>
void delay ( );
void main (void)
{
unsigned char x, y, table[]=[0x09,0x0C,0x06,0x03]; // Clockwise
for(x=0;x<4;x++)
{
P1=table[x];
delay();
}
}
void delay( )
{
int j;
for( j=0; j<= 1000; j++)
}
#include<reg51.h>
void delay ( );
void main ( )
{
unsigned char x,y, table[]=[0x03,0x06,0x0C,0x09]; //Counter
clockwise
for(x=0;x<4;x++)
{
P1=table[y];
delay();
}
}
void delay( )
{
int j;
for( j=0; j<= 1000; j++)
}
#include<reg51.h>
void delay ( );
void main ( void )
{
unsigned char x, y,table[]=[0x09,0x08,0x0C,0x04,0x06,0x02,0x03,0x01] //half
for(x=0;x<8;x++)
{
P1=table[y];
delay();
}
}
void delay( )
{
int j;
for( j=0; j<= 1000; j++)
}
Annexture – 2
Evolution Sheet for The Micro Project
Academic Year: - 2024/25 Semester: - 5th
Prof. S. V. Karande
Name & Signature of Faculty