Keyboard Shortcuts
Likes
- BITX20
- Messages
Search
Re: CAT Support uBITX Firmware CEC Version 1.04 Release
#ubitx
Carlos E. Wenzel
Last great update (1.04) works perfectly on cw. Thanks Ian..... Carlos 2018-03-05 19:28 GMT+01:00 Nigel G4ZAL <nigel@...>: Thanks Ian, will try it out when I can. --
|
Got my device in a case
#ubitx
Simon Rumble
I have finally got my uBitx into a metal case. Previously I'd built it into the plastic box it arrived in. The case is , cast aluminium. I've built it for portable use so the LCD and controls face up. -- I ended up having to re-extend some of the wires that I'd trimmed in the previous box, due to the larger size of this case. Other features include Anderson Power Pole for power, a power switch and a microphone gain control. The potentiometers I'm using are much too long for the knobs. I may cut them down or find shorter options. --? Simon Rumble <simon@...> VK2VSR ![]()
IMG_20180305_171313.jpg
![]()
IMG_20180305_171317.jpg
![]()
IMG_20180305_171350.jpg
![]()
IMG_20180305_171322.jpg
![]()
IMG_20180305_171325.jpg
|
Re: Fldigi with UBITX
This is Nano specific, not a generic Arduino issue.
toggle quoted message
Show quoted text
The Nano documentation is a much easier read than the ATMega328P datasheet: ? ?? Click "DOCUMENTATION", will find this about halfway down the page: ? ? "Analog pins 6 and 7 cannot be used as digital pins." Jerry On Mon, Mar 5, 2018 at 10:20 am, Jerry Gaffke wrote:
On the ATMega328P that's on the Nano, pins A6 and A7 are analog inputs only. |
Re: uBit Crazy Software Problem
Many programmers are not aware of this, but on a Nano pins A6 and A7 are
toggle quoted message
Show quoted text
ANALOG INPUT only. 73 Allard PE1NWL On Mon, March 5, 2018 19:10, Michael Hagen wrote:
Simple problem and I am stumped! |
Re: Fldigi with UBITX
Apologize for not following the discussion. rOn From: Joe Puma <kd2nfc@...> To: BITX20@groups.io Sent: Monday, March 5, 2018 2:07 PM Subject: Re: [BITX20] Fldigi with UBITX The topic was using his Rpi with FLdigi and other programs and he mentioned RMS express is not available on the RPi. Of course he can use a laptop/ PC for it all but if your Rpi is the computer wired to your radio you can leave it that way, run direwolf on the Rpi and use whatever KISS or AGWE compatible program from any PC or laptop. Heck even remotely if you wish it.? Joe KD2NFC?
|
Re: Fldigi with UBITX
Joe Puma
开云体育The topic was using his Rpi with FLdigi and other programs and he mentioned RMS express is not available on the RPi. Of course he can use a laptop/ PC for it all but if your Rpi is the computer wired to your radio you can leave it that way, run direwolf on the Rpi and use whatever KISS or AGWE compatible program from any PC or laptop. Heck even remotely if you wish it.?Joe KD2NFC? On Mar 5, 2018, at 1:49 PM, Ronald Pfeiffer via Groups.Io <w2ctx@...> wrote:
|
After sorting my issues out I started building a case and run into the next problem. Out of the 3 3.5mm jack I was able to only turn the nut on 1 of them. Barrel isn't very long. Am using double sided copper clad pcb. |
Re: Fldigi with UBITX
Or you can run direwolf on your pc directly.? I use it all the time with packet. If RMS express can't handle it I would complain to the powers that be. rOn From: Joe Puma <kd2nfc@...> To: BITX20@groups.io Sent: Monday, March 5, 2018 1:14 PM Subject: Re: [BITX20] Fldigi with UBITX Walter have you tried dire wolf on the Rpi? You would still need to run RMS express on the laptop but you can connect to the RPI as a TNC modem using KISS. That’s how my winlink set up works at the moment Joe KD2NFC?
|
Re: Jerry Solved the puzzle!
开云体育O... THANK You! I read the official Arduino site stuff but never saw it anywhere.? Every internet link said Analog ports can be used just like
digital.? I did learn the Numbering scheme, I never saw that
before? And to really confuse me, it works on the old Mega, well, because it is a different part! I spent about 4 hours testing new and old Nanos.? I ripped open brand new package. What a crazy morning! Thanks Mucho!! Mike
On 3/5/2018 10:20 AM, Jerry Gaffke via
Groups.Io wrote:
On the ATMega328P that's on the Nano, pins A6 and A7 are analog inputs only. -- Mike Hagen, WA6ISP 10917 Bryant Street Yucaipa, Ca. 92399 (909) 918-0058 PayPal ID "MotDog@..." Mike@... |
Re: Fldigi with UBITX
Joe Puma
开云体育Walter have you tried dire wolf on the Rpi? You would still need to run RMS express on the laptop but you can connect to the RPI as a TNC modem using KISS. That’s how my winlink set up works at the momentJoe KD2NFC? On Mar 5, 2018, at 8:59 AM, Walter <W9KJO@...> wrote:
|
Re: uBit Crazy Software Problem
Simple problem and I am stumped!
I wrote some test sketches to test the Analog Pins that are on the 8 Pin molex? called "Controls" on uBit. Well on all 5 Nanos I have here, A6 and A7 don't want to flip. A really puzzling thing is I have an old Mega 2560 (the one with the old USB squarish plug), and its A6 and A7 will toggle? I learned one good thing in hours of fussing around.? I did NOT know you can use a Pin name in the sketch without "A" in front of it. They simply call the ports up from the last digital pin (13), So A0 you can call 14!!!? WOW, never knew that. What is it good for???? You can use for statements to increment a counter (i) to initialize and address these pins.? You don't have to put A in there. Please Help Me, I am going nuts! Mike, WA6ISP Here is a test of A0 - A7,? MY A6 & A7 won't toggle on my Nanos? // // Test A0 - A7 byte i = 0; void setup()? { for (int i=14; i<22; i++)? { ?? pinMode(i, OUTPUT); ?? digitalWrite(i, HIGH); } } void loop() { ? for (int i=14; i<22; i++) { ? digitalWrite(i, LOW); ? delay(100); ? digitalWrite(i, HIGH); ? delay(100); ? } } -- Mike Hagen, WA6ISP 10917 Bryant Street Yucaipa, Ca. 92399 (909) 918-0058 PayPal ID "MotDog@..." Mike@... |
Re: Fldigi with UBITX
Joe Puma
toggle quoted message
Show quoted text
On Mar 5, 2018, at 7:57 AM, Charles Ayers <cwayers12@...> wrote:
|