Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

microcontroller for beginner

Status
Not open for further replies.

sutan

Newbie level 3
Joined
Oct 30, 2009
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
malang
Activity points
1,306
I am a beginner in the micro-controller. I have the old model of micro controllers HB2000w and drivers HM006, I tried to arrange them to drive the motor of the former disk drive motor, how to do this, help me please.
Thank you very much,
sutan
 

  • Like
Reactions: sutan

    sutan

    Points: 2
    Helpful Answer Positive Rating
take a look at MAZIDI for 8051...very good to begin microcontroller programming...and the interfacing is also given nicely..
 
  • Like
Reactions: sutan

    sutan

    Points: 2
    Helpful Answer Positive Rating
Many thanks to all who have helped me. But the fundamental problem of how to understand hb2000w and AT89C51 I was still difficult. If running the LED lights go on as in the example on manual book, I can, but how to turn on for 1 minute, 10 minutes 1 hour can not.
 

Use timers to perform delay.
 
  • Like
Reactions: sutan

    sutan

    Points: 2
    Helpful Answer Positive Rating
please give me a website with content of about timer. thank you very much
 

Check out

**broken link removed**
 
  • Like
Reactions: sutan

    sutan

    Points: 2
    Helpful Answer Positive Rating
If possiable try to go for ARM7 as 8051 is getting outdated
 


I agree with angy and Chullaa that it is time to move away from out of date 8 bit microcontrollers (we dumped all our 8051 and PIC16/PIC18 teaching systems a couple of years ago)
for example, have a look at Microchip's microstick
**broken link removed**

it has an onboard USB programmer / debugger and has a header to enable one to plug it into your own breadboard for building you own circuits
the IDE and compiler etc is free for academic use
 

Hi,

If you need flexibility over selecting any uC or hardware/software for them, learn basics. Use of high-end product with full of new features for a simple task is not smart and resource wasting.

If you know the basics, you shouldn't wait until someone build development-boards or software libraries for you.(Definitely those who build these tools have thoroughly studied basics !!!)

There must be a reason why 8051s are still being manufactured even after 30 years from the date they first appear.

Thank you
 
Last edited:

use the delay routine in this way to produce large delays

void delay(unsigned x)
{
unsigned i,j;
for(i=0;i<x;i++)
for(j=0;j<1275;j++);
delay(500);
}
void main(void)
{
led=on;
delay(500);
led=off
}

it is a format but for accurate delays you need to calculate.
 

Anyone know how to load the program into ATtiny 2313 microcontroller its a SMD type?

:?:
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top