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.

Recent content by Hewitson

  1. H

    [SOLVED] Character scroll and array....??

    I am not familiar with the 8051 but I think that at 11mhz that delay function will take less than 1ms to execute. That second for loop won't do anything, remove the semicolon.
  2. H

    LED requirements to glow

    The current is not being reduced, current is only drawn as needed. The purpose of the resistor is to limit the amount of current drawn from the power source, otherwise unlimited power will be drawn because it is effectively a short circuit between power and ground. A series circuit has to have...
  3. H

    Is there any other method of taking input from a keypad except polling/scanning?

    Absolutely not. What we are talking about could easily be achieved with a 1970's MCU, let alone a modern one.
  4. H

    [SOLVED] Simplifying C script for controlling 64 LEDs

    Re: simplifying C Script I don't see how using "PIN_HIGH" is "so much easier" than "PIN_HIGH()"..
  5. H

    Is there any other method of taking input from a keypad except polling/scanning?

    I'd go with the interrupt method, the MCU will easily be fast enough to enter the ISR and recognise which key has been pressed before the user has stopped pressing it.
  6. H

    NEC IR remote control decode program use BASCOM 8051

    Then adapt the code yourself. The site is for assistance, not to have all the work done for you and handed to you on a silver platter.
  7. H

    [SOLVED] Simplifying C script for controlling 64 LEDs

    Re: simplifying C Script Sure, your function should look like this: void PIN_HIGH() { PORTA = 0b00000001; PORTA = 0b00000010; PORTA = 0b00000100; }
  8. H

    [SOLVED] In system programming for 89s51

    Your parallel cable is probably too long, in my experience they have to be VERY short in order to work (no more than 15cm).
  9. H

    [SOLVED] Sugessions for 3.3v regulators

    An 8.7V voltage drop is going to cause a hell of a lot of heat...
  10. H

    Need ParPort2k.h and ParPort2k.lib

    It's commercial software.. There is a couple of free alternatives you might like to try, UserPort and DoIO.
  11. H

    [Moved] Getting Started with Visual Studio 2010

    If you can already code in C, why on earth would you want to use BASIC? Seems like taking a giant step backwards..
  12. H

    how to enter the commands into the hyperterminal

    Use TeraTerm. Hyperterminal absolutely sucks, I have no idea why so many electronics enthusiasts use it.
  13. H

    PC Assembly Porgramming Doubt

    Endianness - Wikipedia, the free encyclopedia
  14. H

    Problem with RS232 to GPIB Converter

    It sure is, have you tried using a lower baud rate and are you sure you are using the correct handshaking? From a quick look at the GPIB converter manual it expects RTS/CTS. Unfortunately I don't have any experience with GPIB so I'm sorry I can't be of more help.
  15. H

    Problem with RS232 to GPIB Converter

    Did you actually type <LF> or use the ASCII character 10?

Part and Inventory Search

Back
Top