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 LECS

  1. L

    MOSFET (How to determine correct orientation)

    I am assembling a board which uses some IRFD110 MOSFETs but I don't know which way round to insert them. The PCB shows the components with a semi-circular cutout on one end, like many components, but the component itself has no such indicator. The MOSFETs are 4-pin devices with 2 pins linked...
  2. L

    How to do this using Delphi

    The entire content of the EditBox is held in its Text property like this: EditBox1.Text To get one character from that just use an index. EditBox1.text[1] is the first character in the string. To get the ASCII value of a character use the ord function. So you could have something like this...
  3. L

    visual basic interfacing with PIC microcontroller

    Re: visual basic interfacing Take a look at **broken link removed** if you haven't already seen it. There is a lot of relevant info there.
  4. L

    Please any help! PIC serial interface

    troubleshoot serial interface Not really. It is more usual to write if(a=='a') but the result is the same if you write it the other way around. Also note that writing if('a'==a) guards against a common bug. If you accidentally write a single equals sign instead of 2 signs togethr, ie...
  5. L

    Which Programming language is this????????????

    With an apparent typo. I guess init PCI; should be unit PCI;
  6. L

    Solar Tracker Design my Project

    solar tracker Red Rock Energy is also worth a look
  7. L

    Troubelshooting a serial communication problem

    Re: rs232 problem By "computer" do you mean a PC running Windows? If so, it could be the common problem that Windows checks for a serial mouse during boot up. To get around this you can edit boot.ini to include something like: /NoSerialMouse This would apply to all ports. You can tell...
  8. L

    Interview ques? which was asked. Need some help in solving

    Perhaps 4 is in a list of standard interview questions somewhere, because I was asked that at an interview for a PC software post. My answer was that it depended on project priorities such as small code, fast code, or easy-to-maintain maintain code. I presented solutions based around...
  9. L

    triggering another program to run using serial port

    which program is using serial connection I think it is theoretically possible, but it would be hard work and it is likely to get very messy very quickly. The Ring Indicator pin changing state causes a hardware interrupt. You could create a handler for that interrupt. This would avoid the need...

Part and Inventory Search

Back
Top