EngineersGarage

  • Engineers Garage Main Site
  • Visit our active EE Forums
    • EDABoard.com
    • Electro-Tech-Online
  • Projects & Tutorials
    • Circuits
    • Electronic Projects
    • Tutorials
    • Components
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • Advertise
You are here: Home / Replies /   #includesbit

  #includesbit

|

Microcontroller › 8051 › Bipolar Stepper Motor 8051 C-program is needed!!! Please share if anybody have one. ›   #includesbit

June 8, 2013 at 4:24 am #9905
ajay
Participant

  #include<reg51.h>
sbit ir=P2^0;
sbit buzzer=P0^7;
stepper();
delay(unsigned int);
unsigned char i;
unsigned int z,s;
main()
{
buzzer=0;
while(1)
{
if(ir==0)
{
buzzer=1;
stepper();
buzzer=0;
}
else
{
buzzer=0;
}
}
}
stepper()
{
for(s=0;s<14;s++)
{
for(z=0x01;z<0x0a;z=z*2)
{
P3=z;
delay(5);
}
}
for(s=0;s<14;s++)
{
for(z=0x08;z>0x00;z=z/2)
{
P3=z;
delay(5);
}
}
}
delay(unsigned int time)
{
unsigned int i,j;
for(i=0;i<time;i++)
for(j=0;j<1275;j++);
}

RSS Recent Posts

Stay Up To Date

Newsletter Signup
EngineersGarage

Copyright © 2026 Arrowfly LLC. All Rights Reserved. The material on this site may not be reproduced, distributed, transmitted, cached or otherwise used, except with the prior written permission of Arrowfly
Privacy Policy | Advertising

Search Engineers Garage

  • Engineers Garage Main Site
  • Visit our active EE Forums
    • EDABoard.com
    • Electro-Tech-Online
  • Projects & Tutorials
    • Circuits
    • Electronic Projects
    • Tutorials
    • Components
  • Digi-Key Store
    • Cables, Wires
    • Connectors, Interconnect
    • Discrete
    • Electromechanical
    • Embedded Computers
    • Enclosures, Hardware, Office
    • Integrated Circuits (ICs)
    • Isolators
    • LED/Optoelectronics
    • Passive
    • Power, Circuit Protection
    • Programmers
    • RF, Wireless
    • Semiconductors
    • Sensors, Transducers
    • Test Products
    • Tools
  • Advertise