![]() |
I started with VK3BHR's very inexpensive, easy to build one:
http://ironbark.bendigo.latrobe.edu.au/%7Erice/ I am sure Phil would email you a version of the software that displays your own callsign at startup. VK3UBN "Avery Fineman" wrote in message ... In article , SWbeginner writes: I am looking to build a frequency counter, or buy an inxepensive kit. Any recommendations? Needs: low cost, few parts count Recommendations depend on your intended function. The general-purpose counter from Almost All Digital Electronics is good, ready-built with LCD for about $40 (give or take depending on optional backlight or BIG - actually slightly bigger - LCD, temp. compensated timebase oscillator, etc.). Try examining www.aade.com. A good Puget Sound area little company. A "very low parts count" of one would be the CSI 6100 general purpose counter from Circuit Specialists, Inc., for $129 ready to use on either 115 or 230 VAC lines. I have one of those very no-frills units and it works (just got it as a backup on the bench). I've seen better displays than this one has but I can't fault the price for a complete unit ready-to-go. To roll your own counter-timer-etc., the Intersil ICM7216B 28-pin DIP will count to 10 MHz by itself and drive up to 8 LEDs, has an on-board timebase oscillator and function switching internal. The datasheet has several schematics, fairly complete, for making your own. Add a divide-by-10 or divide-by-100 digital prescaler and the input frequency range can extend to 100 or 1000 MHz. The only problem with that is that Intersil is going to OBSOLETE the critter and is apparently out of production (unless you have a very large quantity to order, like many thousands). The Intersil ICM7226B is, or was, a fancier version of 7216, having a 40-pin DIP. It seems to be all gone except on paper. Some distributors may still have some 7216s around in stock. I have datasheets for both and can forward them in e-mail attachments. Several websites have nice pages on using the Microchip PIC 16F84 or 16F71 (AADE uses the '71) as a complete counter and display driver for an LCD, extra transistor things for LEDs, using only 3 ICs total (plus a prescaler to go higher than about 35 MHz maximum with the PIC). That arrangement is nice because one can program in "offsets" of the count such as reading a local oscillator directly, then adding/subtracting the IF to get the antenna input frequency. The only problem there with rolling your own is that, while the PIC development software is free, and program boards are low cost, if you aren't used to Assembler-like language and coding at the machine level, you have a large learning curve to climb. That may be worth it since microcontrollers are VERY versatile, can do amazing things with some creativity, even put ASCII legends of all kinds on the LCD screen besides the basic functions of totalizing a count. PICs of many numbers abound at distributors such as Digikey and Mouser. To use lots of ICs of the "74" family, two to three per digit plus the timebase divider, would be the last alternative. The 74LS190 to 74F190 series is still around but the BCD versions are getting scarce; binary versions (count of 16) are there but the decade ones are apparently being dropped for new production. 74LS160 to 74F160 in the same boat. There is even a CD4nnn which has a whole BCD counter, 4-bit latch, 7-segment decoder-driver in a single DIP that will work up to about 4 MHz, higher with an input prescaler (I have to search my PDFs for the exact number). The IC makers have been winnowing their available types over the last decade, tightening their belts, dropping some things that did not sell well (despite their usefulness to hobbyists), adding new things and getting into the SMT area with a rush that started in the late 1980s. Expect more type dropouts. Adapt, improvise... :-) Len Anderson retired (from regular hours) electronic engineer person |
Henry Kolesnik wrote: You might want to consider going to a ham swapfest and buying a good used commercial unit by HP or others. I see very good ones going cheap ($20 to $30) especially if they're 100MHz and below. 73 hank wd5jfr Right! I got one for $5.00 - a Ramsey with a cold solder joint, works perfectly now, and another for $10 - goes only to 50 MHz, both at hamfests. |
Henry Kolesnik wrote: You might want to consider going to a ham swapfest and buying a good used commercial unit by HP or others. I see very good ones going cheap ($20 to $30) especially if they're 100MHz and below. 73 hank wd5jfr Right! I got one for $5.00 - a Ramsey with a cold solder joint, works perfectly now, and another for $10 - goes only to 50 MHz, both at hamfests. |
I didn't have any luck bidding on EBAY.
So I just built a PIC 16f84 based 4 LED digit counter. In less than a week I built the programmer, learnt to use the MPASM, breadboarded the demo circuit and found a lot of PIC based counter projects. I'm learning to code slowly but at least there are only 35 instructions. The LED's take up to 10mA per digit. I found most popular LCD modules have a standard Hitachi HD44780 interface |
I didn't have any luck bidding on EBAY.
So I just built a PIC 16f84 based 4 LED digit counter. In less than a week I built the programmer, learnt to use the MPASM, breadboarded the demo circuit and found a lot of PIC based counter projects. I'm learning to code slowly but at least there are only 35 instructions. The LED's take up to 10mA per digit. I found most popular LCD modules have a standard Hitachi HD44780 interface |
So I just built a PIC 16f84 based 4 LED digit counter. In less than a
week I built the programmer, learnt to use the MPASM, breadboarded the demo circuit and found a lot of PIC based counter projects. I'm learning to code slowly but at least there are only 35 instructions. The LED's take up to 10mA per digit. I found most popular LCD modules have a standard Hitachi HD44780 interface I am very interested in your design- do you have it documented anywhere? Thanks, Dale W4OP |
So I just built a PIC 16f84 based 4 LED digit counter. In less than a
week I built the programmer, learnt to use the MPASM, breadboarded the demo circuit and found a lot of PIC based counter projects. I'm learning to code slowly but at least there are only 35 instructions. The LED's take up to 10mA per digit. I found most popular LCD modules have a standard Hitachi HD44780 interface I am very interested in your design- do you have it documented anywhere? Thanks, Dale W4OP |
In article , "Dale Parfitt"
writes: So I just built a PIC 16f84 based 4 LED digit counter. In less than a week I built the programmer, learnt to use the MPASM, breadboarded the demo circuit and found a lot of PIC based counter projects. I'm learning to code slowly but at least there are only 35 instructions. The LED's take up to 10mA per digit. I found most popular LCD modules have a standard Hitachi HD44780 interface I am very interested in your design- do you have it documented anywhere? Thanks, Dale W4OP Here are some links to related projects involving PIC micros: http://lea.hamradio.si/~s57nan/ham_radio/fmtr.html http://www.qsl.net/om3cph/counter/ld...s/pic_flck.htm - includes an interesting "huff and puff" variant for VFO locking http://www.qsl.net/g6uyj/freqcounter.html http://members.optushome.com/vk3biz/micro.html - basically a page of links to microcontroller projects The first three are quite detailed in their descriptions, include source code and pictures of completed units (two have PCB patterns). Two pages of hits using search string "PIC frequency counter." There are more sites of project examples out there. Len Anderson retired (from regular hours) electronic engineer person |
In article , "Dale Parfitt"
writes: So I just built a PIC 16f84 based 4 LED digit counter. In less than a week I built the programmer, learnt to use the MPASM, breadboarded the demo circuit and found a lot of PIC based counter projects. I'm learning to code slowly but at least there are only 35 instructions. The LED's take up to 10mA per digit. I found most popular LCD modules have a standard Hitachi HD44780 interface I am very interested in your design- do you have it documented anywhere? Thanks, Dale W4OP Here are some links to related projects involving PIC micros: http://lea.hamradio.si/~s57nan/ham_radio/fmtr.html http://www.qsl.net/om3cph/counter/ld...s/pic_flck.htm - includes an interesting "huff and puff" variant for VFO locking http://www.qsl.net/g6uyj/freqcounter.html http://members.optushome.com/vk3biz/micro.html - basically a page of links to microcontroller projects The first three are quite detailed in their descriptions, include source code and pictures of completed units (two have PCB patterns). Two pages of hits using search string "PIC frequency counter." There are more sites of project examples out there. Len Anderson retired (from regular hours) electronic engineer person |
I am using a program called batfreq.asm and looking at one called
fmeter.asm There are some errors with fmeter.asm. Anyone try that one? |
All times are GMT +1. The time now is 08:48 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
RadioBanter.com