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 Giftbox

  1. G

    USB driver programing

    winusb jungo Why not try to use AVR-USB? It is a software-only implementation of a low-speed USB device for Atmel's AVR microcontrollers. see this website **broken link removed**
  2. G

    Pic IR RC5 Encoder required

    pic ir encoder This is a example may be help you http://www.sixca.com/eng/articles/remote/index.html It uses PIC12F629 and develop with assembly.
  3. G

    lithium polymer charger

    11.1v lipo charger +schematic I think you can modify the circuit here **broken link removed** or check out this website http://www.rcgroups.com/forums/showthread.php?t=130567
  4. G

    16 bit Hex to decimal

    hex to dec ansi c #include < pic18.h > unsigned int MyWord,i; unsigned char Ascii[5]; void main() { MyWord=19985; // value Example max 0XFFFF for(i=0;i < 5;i++) { Ascii[i] = ((MyWord % 10) & 0x0F) | 0x30; MyWord /= 10; } while(1); }...
  5. G

    How to measure 0-30V with ADC that has 5V maximum input ?

    Re: How to measure 0-30V with ADC that has 5V maximum input I have added voltage follower to the my circuit but still not work The objective of my circuit is digital volt meter that can measure 0-30Vdc and show on LCD. If I connect voltage 0-5Vdc direct to ADC input it work fine. My new...
  6. G

    How to measure 0-30V with ADC that has 5V maximum input ?

    I use PIC16F877 which has on chip 10 bit ADC.I have the problem when I use ADC measuring voltage 0-30V. I have tried to use voltage divider but not work. My circuit https://tinypic.com/ixcgaq.jpg
  7. G

    Nice PCB for PIC programmer

    This one PIC programmer for hobbyists. Found at https://www.coolcircuit.com/project/picprog/

Part and Inventory Search

Back
Top