Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- BITX20
- Messages
Search
Status of an Order
#ubitx
I ordered a uBitx understanding that it would take some time before it shipped.
Is there any way to determine the status of the order?? I'm not even sure that it "took". |
Re: How To Do a Search for Specific Message
A standard text search using the SEARCH button on groups.io works just fine for that
toggle quoted message
Show quoted text
? ??/g/BITX20/messages Don't need the entire title, just a keyword or two, spelled correctly. On Fri, Mar 23, 2018 at 05:37 pm, Michael Shreeve wrote:
|
Re: How To Do a Search for Specific Message
Jerry, what if you know the topic but not the message number ? On Sat, Mar 17, 2018 at 10:48 PM, Jerry Gaffke via Groups.Io <jgaffke@...> wrote: I first select a specific message at random, your message will do: --
Michael Shreeve N6GRG |
Re: Junkyard uBITX
#ubitx
I thought I'd update this for the "junkyard" types out there.? Here is the digital rig.? RPi 3 is usually my backup APRS setup, so a Baofeng audio discombublator is on top.? FT8 QSO's from Italy, Cuba and Venezuela today from Central Texas.
Audio isolator to the right (2k + 0.1uF and 600:600 transormers), I used some cheap 3.5-3.5 cables peeled and split with teeth.? Multimeter can be seen on the input side setup for current monitoring.? I didn't have any alligator clips, so I spun the wire around the multimeter leads and used the caps as clamps.? 1.8MHz high-pass on the right/top, local AM station overload. |
Re: Assembly Manual
#bitx40
¿ªÔÆÌåÓýI think they redid the links to
graphics when they ported contents from hfsigs.com to
hfsignals.com.
However, they left behind the links to the old graphics which display as broken links.? There is nothing missing, however, as all of the graphics that relate to the wire up are there. Mike ZL1AXG On 24/03/18 11:06 AM, jaeinsf@... wrote: I did see that page, but there are quite a few broken image links connected to wiring diagrams and such.
|
Re: Assembly Manual
#bitx40
I did see that page, but there are quite a few broken image links connected to wiring diagrams and such.
|
Re: Assembly Manual
#bitx40
Laurence Oberman
Also
toggle quoted message
Show quoted text
This is working for me On Fri, Mar 23, 2018 at 6:01 PM, Laurence Oberman <oberman.l@...> wrote:
You can clone this Git repo |
Re: Assembly Manual
#bitx40
Laurence Oberman
You can clone this Git repo
toggle quoted message
Show quoted text
On Fri, Mar 23, 2018 at 5:36 PM, <jaeinsf@...> wrote:
Hi, |
Re: Source of small gauge shielded audio wire for a filter
#ubitx
I don't suggest you should spend money on this
but really old (pentium) desktop computers used them. The modern SATA drives don't. Try your local friendly comnputer store. I have rescued lots. Brian VK4BAP |
Assembly Manual
#bitx40
Hi,
Sorry if I simply missed seeing the post, but would anyone happen to have a link to the assembly manual.? I received the BITX40 kit as a gift, but it was missing the manual.? I did see some postings with links, but the links are broken and the help page on HF Signals' website has quite a few broken links to images/photos. Thanks! |
Re: Custom Graphics help for S-Meter
John
Vic,
One last thing, I am not sure which lcd library you are using, but the Arduino supplied one has the following definition for the lcd.print method: lcd.print(data, BASE) with:?
?
data: the data to print (char, byte, int, long, or string)
?
BASE (optional): the base in which to print numbers: BIN for binary (base 2), DEC for decimal (base 10), OCT for octal (base 8), HEX for hexadecimal (base 16).
So your statements "lcd.print(1,"? ") don't make sense in that context. Maybe you are using another library. Also, you need to increment the cursor's position, through a loop for example, as you print the larger bars of the meter, otherwise they all print in the same spot. 73, John (VK2ETA) |
PCB enclosure
#ubitx
This is my first attempt at a pcb enclosure.? Cost of the material was $12 on the auction site.? I learned a few things about measuring but am overall pleased with the result.? I will be adding slide on decals to label the controls and connections.? The paper has not come in yet.? ?I added a PTT switch and an Rf gain control (not yet implemented) on the front and a? micro USB port and audio filter switch for cw on the back.? I have a NESCAF cw filter that I will be putting in soon.?
Fun stuff.? Mark KC4GIA |
Re: Custom Graphics help for S-Meter
John
Vic,
I forgot to mention also that I had to use memcpy instead of strcpy to copy the S-meter character array into the LCD buffer string for the characters to be displayed. See extracts of the code below. 73, John Note: this is a "fat" meter with one bar per character, but it can be changed for a "thin" two bars per character like on your picture. //VK2ETA meter for S.Meter, power and SWR
//'S' or 'P' pr 'R' then 0 to 6 growing bars, then '+' or '++' if over S9/Max Power/SWR of 10
//needle valid range 0-8 void drawMeter(int needle) {
?
? //Fill buffer with growing set of bars, up to needle value
? for (int i = 0; i < 6; i++) {
? ? if (needle > i)
? ? ? lcdMeter[i] = byte(i + 1); //Custom characters above
? ? else
? ? ? lcdMeter[i] = 0x20; //blank
? }
?
? if (needle > 7) {
? ? lcdMeter[6] = byte(7); //Custom character "++"
? } else if (needle > 6) {
? ? lcdMeter[6] = 0x2B; //"+"
? } else lcdMeter[6] = 0x20;
}
//meterType : 0 = S.Meter, 1 = Forward Power Meter, 2 = SWR Meter
void DisplayMeter(byte meterType, byte meterValue, char drawPosition)
{
?
? drawMeter(meterValue);?
? //Always line 2
? char sym = 'S';
? if (meterType == 1) sym = 'P';
? else if (meterType == 2) sym = 'R';
? line2Buffer[drawPosition] = sym;
? memcpy(&(line2Buffer[drawPosition + 1]), lcdMeter, 7);
}
?
|
Re: Common heatsink for IRD510's
#ubitx
That was my gut feeling, figured I'd best back it up somehow.
toggle quoted message
Show quoted text
Let's assume the IRF510's tab is 1/2" by 1/2", the insulating material is 0.003" thick, and the relatively permitivity of that insulator is 3.0 To convert to meters, divide inches by 39.37 So area = (0.5/39.37)^2 = 0.0001613 square meters, separation is 0.003/39.37= 0.0000762 meters. Capacitance =? k * e0 * area / separation =? 3.0 * 8.854e-12 * 0.0001613 / 0.0000762 =? 56e-12 Farads ? ?? Impedance of 56 pF at 30 MHz is? ? 1/(2*pi*Hz*Farads) = 1/(2*3.14*30e6*56e-12) = 95 ohms ? ?? So the 12.5 ohm impedance presented by the output transformer should swamp any effect that the 95 ohm capacitive impedance from IRF510 tab to ground. Jerry, KE7ER On Fri, Mar 23, 2018 at 12:21 pm, Jerry Gaffke wrote:
Not a problem. |
Re: Gallery
¿ªÔÆÌåÓýMike
You should be able to see this in the gallery now ... at the bottom of the list. I am still trying to figure out how to get these alpha order by callsign! Mike ZL1AXG On 24/03/18 3:58 AM, Mharpen@... wrote: Hello Mike,
|
Re: Custom Graphics help for S-Meter
John
Hello Vic,
It could be a casting issue. Just in case see the definitions below of the special characters arrays in the uBitx software. The S meter bars using re-defined characters work fine on my display.? Also I assume you use the standard display which comes with the kit. Some display units may not have the eight user defined custom characters.? 73, John (VK2ETA) ?
//Lock (frequency) custom character
const PROGMEM uint8_t lock_bitmap[8] = {
? 0b01110,
? 0b10001,
? 0b10001,
? 0b11111,
? 0b11011,
? 0b11011,
? 0b11111,
? 0b00000
};
PGM_P plock_bitmap = reinterpret_cast<PGM_P>(lock_bitmap);
|
to navigate to use esc to dismiss