¿ªÔÆÌåÓý

Date

Re: I need a V3 or V4 uBitx board.

 

Joel, thanks for the steer on a relay.

I think I managed to decode the print properly from that photo, here's some sources.
Looks like walmart, kmart, newegg, dealextreme are/were also selling them.
I haven't bought any from anybody.

? ??

? ??
? ??
Jerry, KE7ER


On Mon, Jun 25, 2018 at 07:09 am, Joel Caulkins wrote:
Here is a shot of the relay. They are just cheap Chinese EBay relays, I've been using them for years, they seem to be quite reliable.


Re: KD8CEC - Nextion Display - IAN questions

 

Rough translation ?....?

?"He is wondering why for firmware v1.094 there are .HEX files available but no source files, ?as with his Mac has has no way to transfer .HEX files to the Raduino."

Cheers

Michael VE3WMB?


Re: I need a V3 or V4 uBitx board.

 

Hello Guy,

Here is a shot of the relay. They are just cheap Chinese EBay relays, I've been using them for years, they seem to be quite reliable.

Joel
N6ALT


Re: ubitx code version 4.3 for review, testing

Jack Purdum
 

Hi Martin:

Not a problem. One other thing: If your project includes a header file (which it should for multiple files), it should be included as:

?? #include "myHeaderFile.h"

and not

? #include <myHeaderFile.h>

If you use angle brackets (<>), the compiler only looks in the IDE's libraries subdirectory and default include path for the IDE. By using double quotes, the compiler first looks in the sketch directory for the header file and then on the default include path. You will need to have data declarations in the header file for any globals that are used in multiple source files. To get the most help from the compiler in terms of debugging, there should only be one *.ino file in a project--the file that contains setup() and loop(). All the rest should be *.cpp and a header file (*.h). The globals are defined in the *.ino file, but declared in the *.h file. (Define and declare are NOT the same thing, even though programmers are incredibly sloppy when using these terms.) If you use all *.ino files, you lose type checking across source files...bugs love to hide there!

Jack, W8TEE



On Monday, June 25, 2018, 5:58:00 AM EDT, Martin FKK <g4fkk@...> wrote:


Thanks for answering Craig Jack - I've been wondering about that for a few days :)? You learn something new every day.

Martin - G4FKK


Re: Programming Issues and Questions

Jack Purdum
 

Howard:

Alas, I don't know anything about compiling on the Mac, but you can ignore the invalid conversion warnings as the compiler can usually resolve those types of warnings. Did you reboot the machine after installing the drivers? I don't know about the Mac, but sometimes driver installation on some versions of Windows doesn't "take" for all applications until the DLL gets registered by the op system. Can't hurt to try.

Jack, W8TEE

On Monday, June 25, 2018, 8:48:28 AM EDT, Howard Fidel <sonic1@...> wrote:


Okay, now it compiles, but it doesn't recognize the Arduino. I installed the CH340 driver, but it didn't help. Anything else I am missing?

Howard


On 6/25/2018 8:12 AM, Howard Fidel wrote:

Peter:
That did it, thanks. I should have remembered that myself, not the first time I experienced it.

Howard

On 6/25/2018 1:59 AM, Peter Aiea wrote:
For what its worth, I had a similar error (function does not return a value) on the macbook. The same code compiled on the win10 system. Updating the arduino ide for the mac to the latest version resolved the compile error.

On Sun, Jun 24, 2018, 20:02 Howard Fidel <sonic1@...> wrote:
Jack:
That helps, but now I get other errors. There are also lots of warnings.

invalid conversion from 'const byte* {aka const unsigned char*}' to 'uint8_t* {aka unsigned char*}' [-fpermissive]

Howard



On 6/24/2018 10:14 PM, Jack Purdum via Groups.Io wrote:
I don't think Farhan meant to return anything from the function. As a test, change the function's signature from:

?? int menuBand(int btn){

to

?? void menuBand(int btn){

and see what happens. I didn't see any statements in any of the files where a return value from menuBand() is used in an assignment statement, so it should be OK using void.

Jack, W8TEE

On Sunday, June 24, 2018, 5:45:04 PM EDT, Howard Fidel <sonic1@...> wrote:


I am integrating my uBitx into an old HA 350 receiver? chassis. It has a band switch on it, so I want to program A7 to read the switch. I downloaded several different versions of code to find a good starting point. When I use any of Farhan's versions, I get a compile error:?
return-statement with no value, in function returning 'int' [-fpermissive]
?
It is a return in ubitx_menu in the if(!btn) statement that causes this.

I tried Ron, W2CTX's ubitx_V2_00R and i see what looks like coding errors, although it compiles. The error is that A7 is not declared, and digital dash is declared as A3. A3 is PTT
KD8CEC's uBitx_20 compiles.?

Any input on which code is best would be appreciated. I would also like to know how to fix the compiling error so I can reinstall the factory code if I need to.

Thanks,

Howard





Re: uBTIX Nextion Display and microSD card woes #ubitx

 

Or <ctl>h

73,

Bill

On 06/25/2018 12:07 AM, Keven Pittsinger wrote:
Linux doesn't show hidden files by default. But you can see them by typing:

ls -al
--
bark less - wag more


Re: RFI from uBitx TX after AGC and other mods installed

 

Hi Don - I tried a small RG174 cable and unfortunately it didn't solve the RFI problem.? Still getting a very strong garbled RFI when I transmit SSB and the audio cable is connected.? Grounded at both the pot end and the AGC board, with the center of the coax going to the hot side of the pot (not the wiper).??

Same problem with TX into a dummy load or antenna.??

Not sure what to try next unless I move the AGC board towards the front of the enclosure and redo the cabling.? I guess it's hard to know where the RF is coming from so I know the best way to route the cables to avoid it?

Any other thoughts?? Is anyone successfully using the AGC kit mounted at the tap point of the RF trace and Sunil's enclosure?? Maybe a photo showing cabling for a successful install would help.

73,
Rowland K4XD


Re: RFI from uBitx TX after AGC and other mods installed

 

Yes, you are both quite correct. Ground both ends of this connection. -Don


Re: Programming Issues and Questions

 

¿ªÔÆÌåÓý

Got it working! Seems like a bad connection on the mini USB connector.

On 6/25/2018 8:48 AM, Howard Fidel wrote:

Okay, now it compiles, but it doesn't recognize the Arduino. I installed the CH340 driver, but it didn't help. Anything else I am missing?

Howard


On 6/25/2018 8:12 AM, Howard Fidel wrote:
Peter:
That did it, thanks. I should have remembered that myself, not the first time I experienced it.

Howard

On 6/25/2018 1:59 AM, Peter Aiea wrote:
For what its worth, I had a similar error (function does not return a value) on the macbook. The same code compiled on the win10 system. Updating the arduino ide for the mac to the latest version resolved the compile error.

On Sun, Jun 24, 2018, 20:02 Howard Fidel <sonic1@...> wrote:
Jack:
That helps, but now I get other errors. There are also lots of warnings.

invalid conversion from 'const byte* {aka const unsigned char*}' to 'uint8_t* {aka unsigned char*}' [-fpermissive]

Howard



On 6/24/2018 10:14 PM, Jack Purdum via Groups.Io wrote:
I don't think Farhan meant to return anything from the function. As a test, change the function's signature from:

?? int menuBand(int btn){

to

?? void menuBand(int btn){

and see what happens. I didn't see any statements in any of the files where a return value from menuBand() is used in an assignment statement, so it should be OK using void.

Jack, W8TEE

On Sunday, June 24, 2018, 5:45:04 PM EDT, Howard Fidel <sonic1@...> wrote:


I am integrating my uBitx into an old HA 350 receiver? chassis. It has a band switch on it, so I want to program A7 to read the switch. I downloaded several different versions of code to find a good starting point. When I use any of Farhan's versions, I get a compile error:?
return-statement with no value, in function returning 'int' [-fpermissive]
?
It is a return in ubitx_menu in the if(!btn) statement that causes this.

I tried Ron, W2CTX's ubitx_V2_00R and i see what looks like coding errors, although it compiles. The error is that A7 is not declared, and digital dash is declared as A3. A3 is PTT
KD8CEC's uBitx_20 compiles.?

Any input on which code is best would be appreciated. I would also like to know how to fix the compiling error so I can reinstall the factory code if I need to.

Thanks,

Howard






Re: Programming Issues and Questions

 

¿ªÔÆÌåÓý

Okay, now it compiles, but it doesn't recognize the Arduino. I installed the CH340 driver, but it didn't help. Anything else I am missing?

Howard


On 6/25/2018 8:12 AM, Howard Fidel wrote:

Peter:
That did it, thanks. I should have remembered that myself, not the first time I experienced it.

Howard

On 6/25/2018 1:59 AM, Peter Aiea wrote:
For what its worth, I had a similar error (function does not return a value) on the macbook. The same code compiled on the win10 system. Updating the arduino ide for the mac to the latest version resolved the compile error.

On Sun, Jun 24, 2018, 20:02 Howard Fidel <sonic1@...> wrote:
Jack:
That helps, but now I get other errors. There are also lots of warnings.

invalid conversion from 'const byte* {aka const unsigned char*}' to 'uint8_t* {aka unsigned char*}' [-fpermissive]

Howard



On 6/24/2018 10:14 PM, Jack Purdum via Groups.Io wrote:
I don't think Farhan meant to return anything from the function. As a test, change the function's signature from:

?? int menuBand(int btn){

to

?? void menuBand(int btn){

and see what happens. I didn't see any statements in any of the files where a return value from menuBand() is used in an assignment statement, so it should be OK using void.

Jack, W8TEE

On Sunday, June 24, 2018, 5:45:04 PM EDT, Howard Fidel <sonic1@...> wrote:


I am integrating my uBitx into an old HA 350 receiver? chassis. It has a band switch on it, so I want to program A7 to read the switch. I downloaded several different versions of code to find a good starting point. When I use any of Farhan's versions, I get a compile error:?
return-statement with no value, in function returning 'int' [-fpermissive]
?
It is a return in ubitx_menu in the if(!btn) statement that causes this.

I tried Ron, W2CTX's ubitx_V2_00R and i see what looks like coding errors, although it compiles. The error is that A7 is not declared, and digital dash is declared as A3. A3 is PTT
KD8CEC's uBitx_20 compiles.?

Any input on which code is best would be appreciated. I would also like to know how to fix the compiling error so I can reinstall the factory code if I need to.

Thanks,

Howard





Re: Programming Issues and Questions

 

¿ªÔÆÌåÓý

Peter:
That did it, thanks. I should have remembered that myself, not the first time I experienced it.

Howard

On 6/25/2018 1:59 AM, Peter Aiea wrote:

For what its worth, I had a similar error (function does not return a value) on the macbook. The same code compiled on the win10 system. Updating the arduino ide for the mac to the latest version resolved the compile error.

On Sun, Jun 24, 2018, 20:02 Howard Fidel <sonic1@...> wrote:
Jack:
That helps, but now I get other errors. There are also lots of warnings.

invalid conversion from 'const byte* {aka const unsigned char*}' to 'uint8_t* {aka unsigned char*}' [-fpermissive]

Howard



On 6/24/2018 10:14 PM, Jack Purdum via Groups.Io wrote:
I don't think Farhan meant to return anything from the function. As a test, change the function's signature from:

?? int menuBand(int btn){

to

?? void menuBand(int btn){

and see what happens. I didn't see any statements in any of the files where a return value from menuBand() is used in an assignment statement, so it should be OK using void.

Jack, W8TEE

On Sunday, June 24, 2018, 5:45:04 PM EDT, Howard Fidel <sonic1@...> wrote:


I am integrating my uBitx into an old HA 350 receiver? chassis. It has a band switch on it, so I want to program A7 to read the switch. I downloaded several different versions of code to find a good starting point. When I use any of Farhan's versions, I get a compile error:?
return-statement with no value, in function returning 'int' [-fpermissive]
?
It is a return in ubitx_menu in the if(!btn) statement that causes this.

I tried Ron, W2CTX's ubitx_V2_00R and i see what looks like coding errors, although it compiles. The error is that A7 is not declared, and digital dash is declared as A3. A3 is PTT
KD8CEC's uBitx_20 compiles.?

Any input on which code is best would be appreciated. I would also like to know how to fix the compiling error so I can reinstall the factory code if I need to.

Thanks,

Howard




Re: ubitx code version 4.3 for review, testing

 

Jack:
Many thanks! I have a few days off work this week and plan to spend some time on your Beginning C for Arduino 2nd ed.
Regards,
Craig
w9ctw


Re: IRF510

 

¿ªÔÆÌåÓý

Skip:
Thanks for the offer. I just ordered them from Mouser, but I probably won't change them. Just send me another SASE I will send you more parts.

Howard


On 6/25/2018 1:58 AM, Skip Davis via Groups.Io wrote:

Howard do you need some 510¡¯s , I¡¯ll trade a few for some more of those caps and inductors for the driver mod. I got another board that needs them.?

Skip Davis, NC9O

On Jun 24, 2018, at 22:53, Howard Fidel <sonic1@...> wrote:

They are obsolete. Just had them lying around like you do.

Howard



On 6/24/2018 10:12 PM, ajparent1/KB1GMX wrote:
Early Dmos parts.? They are good, I still have some in the collection along with
VN66ak and a few VMP4s.? Whos selling them now?

Allison




Re: ubitx code version 4.3 for review, testing

 

Thanks for answering Craig Jack - I've been wondering about that for a few days :)? You learn something new every day.

Martin - G4FKK


Re: Keypad for Raduino...?

 

¿ªÔÆÌåÓý

I have one of these keypads (which includes a resistor matrix? built in for connecting to an analogue pin)



I have yet to deploy it ... a future project.

Robotdyn also has an i2c controller for capacitive keys and the associated keypad




Mike ZL1AXG

On 25/06/18 9:11 PM, Robert McClements wrote:
The?16 key?TTP229?capacitive touch keypad might be worth considering as an easy low cost external keyboard solution for the uBitx,
it worked well for me on another Arduino project

See

Another interesting possibility is using an Android phone or tablet as a touch screen controller
communicating bluetooth to a module at the uBitx.

73 Bob GM4CID


--
Mike Woods
mhwoods@...


Re: Keypad for Raduino...?

Robert McClements
 

The?16 key?TTP229?capacitive touch keypad might be worth considering as an easy low cost external keyboard solution for the uBitx,
it worked well for me on another Arduino project

See

Another interesting possibility is using an Android phone or tablet as a touch screen controller
communicating bluetooth to a module at the uBitx.

73 Bob GM4CID


Re: RFI from uBitx TX after AGC and other mods installed

 

IMHO, small interconnections, you need both sides ground.
Earlier in telecom we used balance twin wire cable with shield.
?There we used to ground at one? end and? if some one grounds at both ends, the shielding was lost and some longitudinal current were said to be flowing through shield . In such cases, only one side Gnd was recommended.
? But here the shield is a return conductor also.


Regards
MVS Sarma
?

On Mon, Jun 25, 2018 at 6:49 AM, RowlandA <rarcher@...> wrote:
Thanks Don, I'll try some RG-174 then.? I might not have time until Wednesday, flying out tomorrow for a two day trip, but will report back when I try it.

I assume one coax with shield to ground at both ends - unlike the RF gain control coax, which is two coax cables, grounded at the pot end but shields not connected at the AGC board.? Let me know if that's not right.

73,
Rowland K4XD



Re: Bitx40 75KHz Spurious, How to solve it. #bitx40

 

how did you power it - by smps wall wart mor linear? or just a battery?

regards
sarma
?vu3zmv

Regards
MVS Sarma
?

On Mon, Jun 25, 2018 at 12:39 PM, <jj1epe@...> wrote:
Hi!

I built Bitx40 about 2 weeks ago.
?
I measured the spurious of Bitx40 by using the spectrum analyzer.
The level of spurious of harmonics were under 50db. So this is fine.
But the spurious at 75KHz was observed.
The spurious might be the multiple of 25KHz.
It would be much appreciated if you could advise? me the cause and solution of this spurious of Bitx40.

In Japan, we must prove to the authority that the spurious of the transceiver meets the criteria to obtain the certification of the transceiver from the authority.
So if i could not resolve this spurious, I will not be able to use Bitx40 in Japan.

Thanks in advance,
Akira
JJ1EPE



Bitx40 75KHz Spurious, How to solve it. #bitx40

 

Hi!

I built Bitx40 about 2 weeks ago.
?
I measured the spurious of Bitx40 by using the spectrum analyzer.
The level of spurious of harmonics were under 50db. So this is fine.
But the spurious at 75KHz was observed.
The spurious might be the multiple of 25KHz.
It would be much appreciated if you could advise? me the cause and solution of this spurious of Bitx40.

In Japan, we must prove to the authority that the spurious of the transceiver meets the criteria to obtain the certification of the transceiver from the authority.
So if i could not resolve this spurious, I will not be able to use Bitx40 in Japan.

Thanks in advance,
Akira
JJ1EPE


Re: Programming Issues and Questions

 

For what its worth, I had a similar error (function does not return a value) on the macbook. The same code compiled on the win10 system. Updating the arduino ide for the mac to the latest version resolved the compile error.


On Sun, Jun 24, 2018, 20:02 Howard Fidel <sonic1@...> wrote:
Jack:
That helps, but now I get other errors. There are also lots of warnings.

invalid conversion from 'const byte* {aka const unsigned char*}' to 'uint8_t* {aka unsigned char*}' [-fpermissive]

Howard



On 6/24/2018 10:14 PM, Jack Purdum via Groups.Io wrote:
I don't think Farhan meant to return anything from the function. As a test, change the function's signature from:

?? int menuBand(int btn){

to

?? void menuBand(int btn){

and see what happens. I didn't see any statements in any of the files where a return value from menuBand() is used in an assignment statement, so it should be OK using void.

Jack, W8TEE

On Sunday, June 24, 2018, 5:45:04 PM EDT, Howard Fidel <sonic1@...> wrote:


I am integrating my uBitx into an old HA 350 receiver? chassis. It has a band switch on it, so I want to program A7 to read the switch. I downloaded several different versions of code to find a good starting point. When I use any of Farhan's versions, I get a compile error:?
return-statement with no value, in function returning 'int' [-fpermissive]
?
It is a return in ubitx_menu in the if(!btn) statement that causes this.

I tried Ron, W2CTX's ubitx_V2_00R and i see what looks like coding errors, although it compiles. The error is that A7 is not declared, and digital dash is declared as A3. A3 is PTT
KD8CEC's uBitx_20 compiles.?

Any input on which code is best would be appreciated. I would also like to know how to fix the compiling error so I can reinstall the factory code if I need to.

Thanks,

Howard