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 hugo

  1. hugo

    counter using pic uC in microc

    Hi, Here you'll find a nice implementation of a pic frequency counter in mikroc : https://www.micro-examples.com/public/microex-navig/doc/110-p16f84-freqmeter.html
  2. hugo

    Cd contents or author examples for Embedded C by Michael J. Pont

    Hi, I don't have those ... but here you have all the examples from the book : "Patterns for Time Triggered Embedded Systems" by Michael J. Pont ...
  3. hugo

    Hi Sir..I have a good PMW code for share.. it works!! 100%. [mikroC complier]

    It's doable ... take a look here : Dring Engineering Services - PIC PWM Functions
  4. hugo

    [SOLVED] scrolling text on LCD

    Hi, For a single character scrolling to the right, the algorithm is : - write a character (row,col) - delay 100 (ms) //scrolling speed - delete it - write it again (row,col+1) - delay 100 (ms) //scrolling speed - delete it ... etc
  5. hugo

    Looking for a SPI bus Analyser

    Re: spi bus analyser - Scanalogic is a PC based logic analyzer and signal generator 60 euro : **broken link removed** - Logic is a PC based logic analyzer $149 : http://www.saleae.com - USBee SX Logic Analyzer, Signal Generator $169 : USBee SX PC and USB Logic Analyzer, Signal Generator...
  6. hugo

    phse control light dimmer

    Hi, Take a look at this light dimmer (mikroc) project :
  7. hugo

    [SOLVED] Good compiler for PIC16 that integrates with MPLAB well

    Hi, Why don't you try boostc compiler : "BoostC was designed to rival Hi-Tech C compiler. This ANSI C compatible compiler supports features like source level debugging, signed data types, structures/unions and pointers. The BoostC compiler can be used with the SourceBoost IDE (Integrated...
  8. hugo

    best microcontroller tutorials and projects

    Re: best microcontroller projects And some more : Microcontrollers Project Examples Homepage of Noppharat Tawanron Official Home Page of the Roman Black
  9. hugo

    [SOLVED] How to interface piezo buzzer using uln2003 ?

    Hi, Connect buzzer (+) terminal to +5V and buzzer (-) terminal to an output of ULN2003 .
  10. hugo

    any body with clone pickit3 circuit and pcb

    No ... clone means here to produce a copy of pickit 3, to imitate closely a pickit 3 original board ...
  11. hugo

    Making Digital Multimeter

    Another good one here "Mega Meter" : http://members.shaw.ca/Botgoodies2/MegaMeter/MegaMeter.htm
  12. hugo

    Driving 8 7-segment dusplays with few data lines

    Hi, You can use a HC595 shift register ic . You 're going to need 8 pins for driving the anodes ( trough some transistors , hc595 outputs to 7 segments ) 3 pins to control HC595 CLK,DATA,OE & LATCH together for brightness control ( AVR PWM OUT to OE & LATCH ) ... clk and data lines could be...
  13. hugo

    Making Digital Multimeter

    Re: Want helps to make Digital Multimeter It's called Superprobe and it's not a digital multimeter (logic pulser, frequency counter, voltmeter, capacitance meter, signal generator and serial ASCII data output) but it's going to give you some idea ... check it out ...
  14. hugo

    problem in mikroC for PIC V6.2 & V8.2 compiler

    "Hello.Thanks,but I wonder it begins to give error just after 9k;before it[9k] it works correctly." What's 9k ? So basically you have 2 options here : 1. write more eficient code ; 2. buy a licence;
  15. hugo

    [SOLVED] Using external interrupt on RB0 C 16f877

    Hi, Do not put delays in your interrupt routine ... void interrupt(void) { if(INTCON.INTF == 1) { PORTD = 0x01; //To see if interrupt is triggered //Delay_ms(2000); INTCON.INTF = 0; //You HAVE to clear interrupt flag } }

Part and Inventory Search

Back
Top