Hi all,
few days ago I needed digital potentiometer for one application. A quick look at available pots has returned Microchip's MCP41HV31 Digital Pot. This pot is controlled via SPI, which is nice, because Bascom-AVR can handle SPI with ease. If you're interested how, Read more if interested...
Hi all,
it's nice to use 3x4 matrix keyboard to enter all variables via keyboard. But sometimes it's more convenient to use rotary encoder for that purpose.

In this blog I will write something about rotary encoder, how to use it and how to make a system with main menu and submenus. All will be displayed on the LCD of course. Read more if interested...
Hi,
we all know matrix keyboard. Two types are most common: 3x4 and 4x4. The numbers indicate number of keypads on the keyboard. Most of them are connected as matrix.
 
I have attached keyboards from the photo directly to MiniPin dev. board (which is by the way Arduino compatible), no resistors were used.
In Bascom help you can find a nice command: Getkbd() and it's nicely documented but... Read more if interested..
Hi,
this blog is connected with my recent one, where HM-TRP was discussed. Why? Well, I wanted to see data comming from HM-TRP on an LCD but as such it displays data only at 5V power supply voltage, while HM-TRP operates at max. 3.6 V power supply voltage.
Sollution for that problem was found at this web page, where author was generating low frequency with a microcontroller or an oscillator. I did try a microcontroller, but it has turned out that this sollution uses one pin, which in "pin critical" applications is not what I wanted. Read more if interested...
In my blog I have been discussing new Hoperf modules which were performing very well however in one application I needed really long range, therefore I was looking for suitable modules.
Sure enough Hoperf has got a great module that operates on 868 MHz which here in the EU is a band that is available for users like myself. Allowed transmitted power is up to 0.5W, which is a lot of power.
For other regions other frequency ranges can be ordered from Hoperf, also the output power may be lowered with a simple command - see datasheet for more info.
Module that I used has 100 mW of output power and it's transceiver, which is great for my application.

The module has also one nice feature: RSSI. Read more if interested...
Hi all,
we have obtained new UHF modules from Hoperf company.

Photos of a new receiver and transmitter.
First impression is that modules are much better than those that we have been using so far and have been obtained elsewhere on the Ebay. I am sure that you've seen the image of the receiver like this: 
Well, new modules have much better range thanks to the RF83 chip used on that module. The chip itself includes modern UHF receiver and therefore much better reception & range. Read more if interested...
Hi all,
I have been playing with ultrasound distance measurement module. Nice little module that does basic distance measurement in the range of 3 mm to up to 3 meters or more.
I have used this module.

Bascom-AVR program is very simple:
$regfile = "m324padef.dat"'$regfile = "m16def.dat"$crystal = 8000000 Config Pind.3 = InputConfig Portd.4 = OutputPortd.3 = 0Portd.4 = 0Dim Distance As Word , W As Word , I As Byte Config Lcd = 16 * 2Config Lcdbus = 4'Config Lcdpin = Pin , Db7 = Porta.7 , Db6 = Porta.6 , Db5 = Porta.5 , Db4 = Porta.4 , E = Porta.2 , Rs = Porta.1'Config Lcdpin = Pin , Db7 = Portb.7 , Db6 = Portb.6 , Db5 = Portb.5 , Db4 = Portb.4 , E = Portb.2 , Rs = Portb.1Config Lcdpin = Pin , Db7 = Portc.7 , Db6 = Portc.6 , Db5 = Portc.5 , Db4 = Portc.4 , E = Portc.2 , Rs = Portc.1'Config Lcdpin = Pin , Db7 = Portd.7 , Db6 = Portd.6 , Db5 = Portd.5 , Db4 = Portd.4 , E = Portd.2 , Rs = Portd.1Cursor Off Distance= 0Cls Do Pulseout Portd , 4 , 20 'Min. 10us pulse 'Waitms 100 'meant for testing error Pulsein W , Pind , 3 , 1 'read distance Incr I If Err = 0 Then W = W * 10 'calcullate to W = W / 58 ' centimeters 'W = W / 6 ' milimeters Distance = W Else Distance = 0 End If Locate 1 , 1 If Distance > 0 Then Lcd "D= " ; Distance; " " Locate 1 , 7 Lcd "cm" Else Lcd "*ERROR**" End If Waitms 200
I did not complicate with designing a PCB, because module's connection to MiniPin is pretty straight forward with 4 wires like this:

Module works great. At measuring long distances one has to take care to disable unwanted echoes from the side of the module. My friend Vilko has put on sensors plastic tubes and achieved distance measurement of 4m.
Hi all,
with a little help of John (VK3TVZ) I have upgraded SW for the UHF Weekender and made an ebay listing available here:http://www.ebay.com/itm/222650125101?ssPageName=STRK:MESELX:IT&_trksid=p3984.m1555.l2649
I invite all HAMs to contact me to modify SW so that the Weekender will be usable in your area.
Best 73s de Jure, S52CQ
- Page 5 of 5
- << Start < Prev 1 2 3 4 5 Next > End >>
|
|