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 cubanflyer

  1. cubanflyer

    control the servo degree using Mikroc & Proteus PIC16f877a

    You need to remember that the servo will be looking a pulse every 20ms to hold the position. I do not program in C but, Your code, if I am reading it correctly, would move it quickly to the end point and then go into an endless loop without supplying a pulse to the servo on a regular basis.
  2. cubanflyer

    [SOLVED] 16f676 simple example needed in hitech

    You need a second delay, you are switching off the the leds, waiting 500ms the switching then on, then straight off again, you want a delay after switching them on. void main() { pic_init(); while(1) { led0=0; led1=0; __delay_ms(500); led0=1; led1=1; __delay_ms(500); } }
  3. cubanflyer

    Can i use analog servo motor with microcontroller ?

    The poisiton of the servo is controlled by the pulse width, the most common of these is 1.5ms centre position. The servo needs a constant stream of these pulses to hold its position approx every 20ms. When you reset the system you need to start feeding the pulse width, that is you required...
  4. cubanflyer

    Can i use analog servo motor with microcontroller ?

    As stated earlier there seems to be some confusion, the servo you are looking at is a standard RC type unit, the difference bewteen digital and analog servos of this type is to do with the internals of the servo not how you would control it. All of these servo are contoled by PPM, (pulse...
  5. cubanflyer

    Difference between software interrupt & hardware interrupt?

    A software interupt is drive by a predifined period of time usual a counter, that overflows or reaches zero, that triggers the interrupt routine, where as a hardware interrupt is from an external force for example a switch. HTH
  6. cubanflyer

    Touchscreen working and Simulation in Proteus

    have you checked out the attachment by Fragrance in the 3rd link? it may be what you want.
  7. cubanflyer

    Touchscreen working and Simulation in Proteus

    This is the schematic for easypic7 which has the board cirucuit built in easypic_v7_schematic_v103.pdf and this is another example I found 079-touchclock.html Found this old thread about adding on to Proteus https://www.edaboard.com/threads/191364/
  8. cubanflyer

    Touchscreen working and Simulation in Proteus

    Yes, you can get just the touch screen overlay, what size screen is it you are using? Here is an example **broken link removed**
  9. cubanflyer

    Using a optioisolated trac with an MCU

    What you need to rememer is the available current on the output, also by not directly driving a device directly, you are providing a degree of protection for the MCU.
  10. cubanflyer

    regarding mosfet input and output

    If you want to drive from micrcontroller, also need to think about a legic level mosfet. These are designed to operate at 5v input on the gate
  11. cubanflyer

    how to run a servomotor(sm105 or turnigy tg9e) using pic 18f452

    What you need to remember is A servo requires a cycle of about 20ms The position of the arm (on most servos) is a pulse between 1ms & 2ms, wth 1.5ms being the centre. Therefore as an example to move the arm to an extreme High pulse 2ms low for 18ms- making the 20ms cycle. This needs to be...
  12. cubanflyer

    What are the types of servo motor?

    Re: Types of Servo motor If you want to control the direction of your motor you need to consider using a H-Bridge, and then possibly some sensors to limit the movement.
  13. cubanflyer

    [MOVED]Interfacing lcd with pic

    The question is do you mean to use the same databus for all LCD's, in which case, I would assume you need to ensure the lcd's are in read mode Ie ground the R/W pin Use a common micro pin for R/S use a different micro pin for each LCD's EN pin I have not tried this but can not see why it...
  14. cubanflyer

    PICKIT2 Traget ID not matching the PIC 16F877a

    Are you sure the pins from the pickit are connected correctly, I once connected mine with the pins reversed and after that it would not identify the chip, I must have blown the chip.
  15. cubanflyer

    servo motor with 8051 mcr

    If you search the forum you will find lots of information on this subject.

Part and Inventory Search

Back
Top