¿ªÔÆÌåÓý

Date

Re: BITX QSO Night, Sunday, June 18, 7pm Local Time, 7277 kHz in North America, 7177 kHz elsewhere

 

As for 7177 KHz, it is usually clobbered by QRM on 7175. I have found 7178 or better yet 7179 to have less QRM than 7177.
Any frequency below 7200 that can be used for SSB would work for Region 1 and Region 3 stations. Only Region 2 has 40m access above 7200.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Jack Purdum
 

Well, that's about all the tricks I can control. See if you can find a driver for that board somewhere. If the vendor has demo code that runs, ask for that to see how they got it to run.

Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 10:37 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

?//g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488
? g_identifier = 0x1581;
? switch (g_identifier) {

no change ?still white screen...?


On Mon, Jun 12, 2017 at 11:29 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
Comment out line 1334 and change it:

1334 ???// g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488
1334 ? ? g_identifier =?0x1581;


and see what happens. This forces it to assume the non-default parameters.

Jack, W8TEE

From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 10:24 PM

Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I wired the display up to a atmega 2560
ran your pgm and the serial said:

Serial took 0ms to start
ID = 0x1289
100 Hz


On Mon, Jun 12, 2017 at 10:59 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
Do you have the latest Adafruit graphics library installed? Around line 1334 is the line:

? g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488

put these lines after it:

? Serial.print("g-ID = ");
? Serial.println(g_identifier, HEX);

and see if the ID is in the program. If your number does not appear in the switch/case block (lines 1336-1460), the code by default assumes the display is a 0x154 or 0x9341. If it is not one of those, try changing g_identifier to 0X9488 and see if that works.

Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 9:46 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I ran it ?before.
It suggests trying ?the defined option

One resulted in ?id =0 and?
when I tried the other option the id said ?id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...> wrote:
Go to the examples for the library and run the LCD_ID example.? Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the? MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to <> and do a search for
? ? MCUFRIEND_kbv.? That driver should work.

? ? Vince.



? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? Jack,

? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? parts to
? ? ? ? arrive.

? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <> on it)

? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? The problem is I thought I would try to find an example to test
? ? ? ? if the
? ? ? ? TFT works.

? ? ? ? Well, I tried several but only get a white screen.? I used a uno and
? ? ? ? attached the tft to - as pins match ...tried other sketches -
? ? ? ? still only
? ? ? ? a white screen
? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? accordingly ,
? ? ? ? same results, they compile and upload but nothing but a white
? ? ? ? screen.

? ? ? ? 1. Do you have an exact source where you purchased your display?
? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? 3. The photo below is my current display..


? ? ? ? Any help would be appreciated

? ? ? ? Joe
? ? ? ? VE1BWV



? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?







Virus-free.







Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

 

?//g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488
? g_identifier = 0x1581;
? switch (g_identifier) {

no change ?still white screen...?


On Mon, Jun 12, 2017 at 11:29 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
Comment out line 1334 and change it:

1334 ???// g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488
1334 ? ? g_identifier =?0x1581;


and see what happens. This forces it to assume the non-default parameters.

Jack, W8TEE

From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 10:24 PM

Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I wired the display up to a atmega 2560
ran your pgm and the serial said:

Serial took 0ms to start
ID = 0x1289
100 Hz


On Mon, Jun 12, 2017 at 10:59 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
Do you have the latest Adafruit graphics library installed? Around line 1334 is the line:

? g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488

put these lines after it:

? Serial.print("g-ID = ");
? Serial.println(g_identifier, HEX);

and see if the ID is in the program. If your number does not appear in the switch/case block (lines 1336-1460), the code by default assumes the display is a 0x154 or 0x9341. If it is not one of those, try changing g_identifier to 0X9488 and see if that works.

Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 9:46 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I ran it ?before.
It suggests trying ?the defined option

One resulted in ?id =0 and?
when I tried the other option the id said ?id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...> wrote:
Go to the examples for the library and run the LCD_ID example.? Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the? MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to <> and do a search for
? ? MCUFRIEND_kbv.? That driver should work.

? ? Vince.



? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? Jack,

? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? parts to
? ? ? ? arrive.

? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <> on it)

? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? The problem is I thought I would try to find an example to test
? ? ? ? if the
? ? ? ? TFT works.

? ? ? ? Well, I tried several but only get a white screen.? I used a uno and
? ? ? ? attached the tft to - as pins match ...tried other sketches -
? ? ? ? still only
? ? ? ? a white screen
? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? accordingly ,
? ? ? ? same results, they compile and upload but nothing but a white
? ? ? ? screen.

? ? ? ? 1. Do you have an exact source where you purchased your display?
? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? 3. The photo below is my current display..


? ? ? ? Any help would be appreciated

? ? ? ? Joe
? ? ? ? VE1BWV



? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?







Virus-free.





Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Jack Purdum
 

Comment out line 1334 and change it:

1334 ???// g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488
1334 ? ? g_identifier =?0x1581;


and see what happens. This forces it to assume the non-default parameters.

Jack, W8TEE


From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 10:24 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I wired the display up to a atmega 2560
ran your pgm and the serial said:

Serial took 0ms to start
ID = 0x1289
100 Hz


On Mon, Jun 12, 2017 at 10:59 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
Do you have the latest Adafruit graphics library installed? Around line 1334 is the line:

? g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488

put these lines after it:

? Serial.print("g-ID = ");
? Serial.println(g_identifier, HEX);

and see if the ID is in the program. If your number does not appear in the switch/case block (lines 1336-1460), the code by default assumes the display is a 0x154 or 0x9341. If it is not one of those, try changing g_identifier to 0X9488 and see if that works.

Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 9:46 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I ran it ?before.
It suggests trying ?the defined option

One resulted in ?id =0 and?
when I tried the other option the id said ?id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...> wrote:
Go to the examples for the library and run the LCD_ID example.? Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the? MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to <> and do a search for
? ? MCUFRIEND_kbv.? That driver should work.

? ? Vince.



? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? Jack,

? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? parts to
? ? ? ? arrive.

? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <> on it)

? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? The problem is I thought I would try to find an example to test
? ? ? ? if the
? ? ? ? TFT works.

? ? ? ? Well, I tried several but only get a white screen.? I used a uno and
? ? ? ? attached the tft to - as pins match ...tried other sketches -
? ? ? ? still only
? ? ? ? a white screen
? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? accordingly ,
? ? ? ? same results, they compile and upload but nothing but a white
? ? ? ? screen.

? ? ? ? 1. Do you have an exact source where you purchased your display?
? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? 3. The photo below is my current display..


? ? ? ? Any help would be appreciated

? ? ? ? Joe
? ? ? ? VE1BWV



? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?







Virus-free.




Re: BITX QSO Night, Sunday, June 18, 7pm Local Time, 7277 kHz in North America, 7177 kHz elsewhere

 

How about using QRPspots? ? to advertise frequencies in use by BITXers?
QRPspots doesn't get very busy so it is easy to see a BITX spot if we put "bitx40" or "bitx40 group" in the comments.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

 

I wired the display up to a atmega 2560
ran your pgm and the serial said:

Serial took 0ms to start
ID = 0x1289
100 Hz


On Mon, Jun 12, 2017 at 10:59 PM, Jack Purdum via Groups.Io <econjack@...> wrote:
Do you have the latest Adafruit graphics library installed? Around line 1334 is the line:

? g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488

put these lines after it:

? Serial.print("g-ID = ");
? Serial.println(g_identifier, HEX);

and see if the ID is in the program. If your number does not appear in the switch/case block (lines 1336-1460), the code by default assumes the display is a 0x154 or 0x9341. If it is not one of those, try changing g_identifier to 0X9488 and see if that works.

Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 9:46 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I ran it ?before.
It suggests trying ?the defined option

One resulted in ?id =0 and?
when I tried the other option the id said ?id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...> wrote:
Go to the examples for the library and run the LCD_ID example.? Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the? MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to <> and do a search for
? ? MCUFRIEND_kbv.? That driver should work.

? ? Vince.



? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? Jack,

? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? parts to
? ? ? ? arrive.

? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <> on it)

? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? The problem is I thought I would try to find an example to test
? ? ? ? if the
? ? ? ? TFT works.

? ? ? ? Well, I tried several but only get a white screen.? I used a uno and
? ? ? ? attached the tft to - as pins match ...tried other sketches -
? ? ? ? still only
? ? ? ? a white screen
? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? accordingly ,
? ? ? ? same results, they compile and upload but nothing but a white
? ? ? ? screen.

? ? ? ? 1. Do you have an exact source where you purchased your display?
? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? 3. The photo below is my current display..


? ? ? ? Any help would be appreciated

? ? ? ? Joe
? ? ? ? VE1BWV



? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?







Virus-free.



Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Vince Vielhaber
 

Is it defined?

Vince.

On 06/12/2017 10:12 PM, Joe wrote:
TFT LCD test
Using Adafruit 2.8" TFT Breakout Board Pinout
TFT size is 240x320
Unknown LCD driver chip: 8989
If using the Adafruit 2.8" TFT Arduino shield, the line:
#define USE_ADAFRUIT_SHIELD_PINOUT
should appear in the library header (Adafruit_TFT.h).
If using the breakout board, it should NOT be #defined!
Also if using the breakout, double-check that all wiring
matches the tutorial.


On Mon, Jun 12, 2017 at 10:56 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:


ok, before the line tft.begin(g_identifier) put
g_identifier = 0x8989;

and see if it runs. You may need to check on the arduino forum for
other possible values. I didn't see a chip number in the pic you
posted.

Vince.

On 06/12/2017 09:46 PM, Joe wrote:

I ran it before.
It suggests trying the defined option

One resulted in id =0 and
when I tried the other option the id said id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber
<vev@... <mailto:vev@...>
<mailto:vev@... <mailto:vev@...>>> wrote:

Go to the examples for the library and run the LCD_ID
example. Have
a serial monitor window open and see what they ID it as, if
they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:

I have the MCUFRIEND_kbv library loaded and it compiles
with
some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber
<vev@... <mailto:vev@...>
<mailto:vev@... <mailto:vev@...>>
<mailto:vev@... <mailto:vev@...>
<mailto:vev@... <mailto:vev@...>>>> wrote:

Go to www.arduino.cc <>
<>
<> and do a search for
MCUFRIEND_kbv. That driver should work.

Vince.



On 06/12/2017 09:16 PM, Joe wrote:

Jack,

I have been experimenting while waiting for my
remaining few
parts to
arrive.

I purchase a 2.8 inch tft display ( it says
mcufriends.com <>
<>
<> on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an
example
to test
if the
TFT works.

Well, I tried several but only get a white
screen. I
used a uno and
attached the tft to - as pins match ...tried other
sketches -
still only
a white screen
I tried other arduino, atmega 2560 and adjusted
the pins
accordingly ,
same results, they compile and upload but
nothing but a
white
screen.

1. Do you have an exact source where you
purchased your
display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV



--
Michigan VHF Corp.








--
Michigan VHF Corp.








--
Michigan VHF Corp.





--
Michigan VHF Corp.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Vince Vielhaber
 

Are you referring to the empty holes? They use the same board in one of their other displays that only uses those pins on the Mega 2560. I have one that also has a touch screen that uses just about the entire connector on the 2560 and doesn't have the ones in the side. I think it's a 3.5" touch screen.

Vince.

On 06/12/2017 10:08 PM, Jack Purdum via Groups.Io wrote:
None of my displays have those extra pins on the left side of the
display. Also, all of mine are sort of a red-orange color:



Jack, W8TEE


------------------------------------------------------------------------
*From:* Joe <joeman2116@...>
*To:* [email protected]
*Sent:* Monday, June 12, 2017 9:17 PM
*Subject:* [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Jack,

I have been experimenting while waiting for my remaining few parts to
arrive.

I purchase a 2.8 inch tft display ( it says mcufriends.com on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example to test if the
TFT works.

Well, I tried several but only get a white screen. I used a uno and
attached the tft to - as pins match ...tried other sketches - still only
a white screen
I tried other arduino, atmega 2560 and adjusted the pins accordingly ,
same results, they compile and upload but nothing but a white screen.

1. Do you have an exact source where you purchased your display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV




<>
Virus-free. www.avast.com
<>


<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
--
Michigan VHF Corp.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

 

TFT LCD test
Using Adafruit 2.8" TFT Breakout Board Pinout
TFT size is 240x320
Unknown LCD driver chip: 8989
If using the Adafruit 2.8" TFT Arduino shield, the line:
? #define USE_ADAFRUIT_SHIELD_PINOUT
should appear in the library header (Adafruit_TFT.h).
If using the breakout board, it should NOT be #defined!
Also if using the breakout, double-check that all wiring
matches the tutorial.


On Mon, Jun 12, 2017 at 10:56 PM, Vince Vielhaber <vev@...> wrote:

ok, before the line tft.begin(g_identifier) put
g_identifier = 0x8989;

and see if it runs.? You may need to check on the arduino forum for other possible values.? I didn't see a chip number in the pic you posted.

Vince.

On 06/12/2017 09:46 PM, Joe wrote:
I ran it? before.
It suggests trying? the defined option

One resulted in? id =0 and
when I tried the other option the id said? id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to the examples for the library and run the LCD_ID example.? Have
? ? a serial monitor window open and see what they ID it as, if they do.

? ? Vince.

? ? On 06/12/2017 09:29 PM, Joe wrote:

? ? ? ? I have the? MCUFRIEND_kbv library loaded and it compiles with
? ? ? ? some ino
? ? ? ? examples but only white screen.

? ? ? ? Joe

? ? ? ? On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber
? ? ? ? <vev@... <mailto:vev@...>
? ? ? ? <mailto:vev@... <mailto:vev@...>>> wrote:

? ? ? ? ? ? Go to <>
? ? ? ? <> and do a search for
? ? ? ? ? ? MCUFRIEND_kbv.? That driver should work.

? ? ? ? ? ? Vince.



? ? ? ? ? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? ? ? ? ? Jack,

? ? ? ? ? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? ? ? ? ? parts to
? ? ? ? ? ? ? ? arrive.

? ? ? ? ? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <>
? ? ? ? ? ? ? ? <> on it)

? ? ? ? ? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? ? ? ? ? The problem is I thought I would try to find an example
? ? ? ? to test
? ? ? ? ? ? ? ? if the
? ? ? ? ? ? ? ? TFT works.

? ? ? ? ? ? ? ? Well, I tried several but only get a white screen.? I
? ? ? ? used a uno and
? ? ? ? ? ? ? ? attached the tft to - as pins match ...tried other
? ? ? ? sketches -
? ? ? ? ? ? ? ? still only
? ? ? ? ? ? ? ? a white screen
? ? ? ? ? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? ? ? ? ? accordingly ,
? ? ? ? ? ? ? ? same results, they compile and upload but nothing but a
? ? ? ? white
? ? ? ? ? ? ? ? screen.

? ? ? ? ? ? ? ? 1. Do you have an exact source where you purchased your
? ? ? ? display?
? ? ? ? ? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? ? ? ? ? 3. The photo below is my current display..


? ? ? ? ? ? ? ? Any help would be appreciated

? ? ? ? ? ? ? ? Joe
? ? ? ? ? ? ? ? VE1BWV



? ? ? ? ? ? --
? ? ? ? ? ? ? Michigan VHF Corp.? ?
? ? ? ? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?





Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Jack Purdum
 

None of my displays have those extra pins on the left side of the display. Also, all of mine are sort of a red-orange color:



Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 9:17 PM
Subject: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Jack,

I have been experimenting while waiting for my remaining few parts to arrive.

I purchase a 2.8 inch tft display ( it says mcufriends.com on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example to test if the TFT works.

Well, I tried several but only get a white screen. ?I used a uno and attached the tft to - as pins match ...tried other sketches - still only a white screen
I tried other arduino, atmega 2560 and adjusted the pins accordingly , same results, they compile and upload but nothing but a white screen.

1. Do you have an exact source where you purchased your display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV




Virus-free.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Jack Purdum
 

Do you have the latest Adafruit graphics library installed? Around line 1334 is the line:

? g_identifier = tft.readID(); ? ?// Get TFT ID ?3.95" = 0x9486, 3.6" = 0x9488

put these lines after it:

? Serial.print("g-ID = ");
? Serial.println(g_identifier, HEX);

and see if the ID is in the program. If your number does not appear in the switch/case block (lines 1336-1460), the code by default assumes the display is a 0x154 or 0x9341. If it is not one of those, try changing g_identifier to 0X9488 and see if that works.

Jack, W8TEE



From: Joe <joeman2116@...>
To: [email protected]
Sent: Monday, June 12, 2017 9:46 PM
Subject: Re: [BITX20] W8TEE TFT /VFO BOARD - WHICH DISPLAY?

I ran it ?before.
It suggests trying ?the defined option

One resulted in ?id =0 and?
when I tried the other option the id said ?id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...> wrote:
Go to the examples for the library and run the LCD_ID example.? Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the? MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to <> and do a search for
? ? MCUFRIEND_kbv.? That driver should work.

? ? Vince.



? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? Jack,

? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? parts to
? ? ? ? arrive.

? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <> on it)

? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? The problem is I thought I would try to find an example to test
? ? ? ? if the
? ? ? ? TFT works.

? ? ? ? Well, I tried several but only get a white screen.? I used a uno and
? ? ? ? attached the tft to - as pins match ...tried other sketches -
? ? ? ? still only
? ? ? ? a white screen
? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? accordingly ,
? ? ? ? same results, they compile and upload but nothing but a white
? ? ? ? screen.

? ? ? ? 1. Do you have an exact source where you purchased your display?
? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? 3. The photo below is my current display..


? ? ? ? Any help would be appreciated

? ? ? ? Joe
? ? ? ? VE1BWV



? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?







Virus-free.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Vince Vielhaber
 

ok, before the line tft.begin(g_identifier) put
g_identifier = 0x8989;

and see if it runs. You may need to check on the arduino forum for other possible values. I didn't see a chip number in the pic you posted.

Vince.

On 06/12/2017 09:46 PM, Joe wrote:
I ran it before.
It suggests trying the defined option

One resulted in id =0 and
when I tried the other option the id said id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

Go to the examples for the library and run the LCD_ID example. Have
a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:

I have the MCUFRIEND_kbv library loaded and it compiles with
some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber
<vev@... <mailto:vev@...>
<mailto:vev@... <mailto:vev@...>>> wrote:

Go to www.arduino.cc <>
<> and do a search for
MCUFRIEND_kbv. That driver should work.

Vince.



On 06/12/2017 09:16 PM, Joe wrote:

Jack,

I have been experimenting while waiting for my remaining few
parts to
arrive.

I purchase a 2.8 inch tft display ( it says
mcufriends.com <>
<> on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example
to test
if the
TFT works.

Well, I tried several but only get a white screen. I
used a uno and
attached the tft to - as pins match ...tried other
sketches -
still only
a white screen
I tried other arduino, atmega 2560 and adjusted the pins
accordingly ,
same results, they compile and upload but nothing but a
white
screen.

1. Do you have an exact source where you purchased your
display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV



--
Michigan VHF Corp.








--
Michigan VHF Corp.





--
Michigan VHF Corp.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

 

I ran it ?before.
It suggests trying ?the defined option

One resulted in ?id =0 and?
when I tried the other option the id said ?id =8989
tft =240 x320


On Mon, Jun 12, 2017 at 10:34 PM, Vince Vielhaber <vev@...> wrote:
Go to the examples for the library and run the LCD_ID example.? Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the? MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

? ? Go to <> and do a search for
? ? MCUFRIEND_kbv.? That driver should work.

? ? Vince.



? ? On 06/12/2017 09:16 PM, Joe wrote:

? ? ? ? Jack,

? ? ? ? I have been experimenting while waiting for my remaining few
? ? ? ? parts to
? ? ? ? arrive.

? ? ? ? I purchase a 2.8 inch tft display ( it says
? ? ? ? <> on it)

? ? ? ? It has appears to have the correct pins / jacks etc.

? ? ? ? The problem is I thought I would try to find an example to test
? ? ? ? if the
? ? ? ? TFT works.

? ? ? ? Well, I tried several but only get a white screen.? I used a uno and
? ? ? ? attached the tft to - as pins match ...tried other sketches -
? ? ? ? still only
? ? ? ? a white screen
? ? ? ? I tried other arduino, atmega 2560 and adjusted the pins
? ? ? ? accordingly ,
? ? ? ? same results, they compile and upload but nothing but a white
? ? ? ? screen.

? ? ? ? 1. Do you have an exact source where you purchased your display?
? ? ? ? 2. Any guidance to further test my current display?
? ? ? ? 3. The photo below is my current display..


? ? ? ? Any help would be appreciated

? ? ? ? Joe
? ? ? ? VE1BWV



? ? --
? ? ? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?






--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?





Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Vince Vielhaber
 

Go to the examples for the library and run the LCD_ID example. Have a serial monitor window open and see what they ID it as, if they do.

Vince.

On 06/12/2017 09:29 PM, Joe wrote:
I have the MCUFRIEND_kbv library loaded and it compiles with some ino
examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...
<mailto:vev@...>> wrote:

Go to www.arduino.cc <> and do a search for
MCUFRIEND_kbv. That driver should work.

Vince.



On 06/12/2017 09:16 PM, Joe wrote:

Jack,

I have been experimenting while waiting for my remaining few
parts to
arrive.

I purchase a 2.8 inch tft display ( it says mcufriends.com
<> on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example to test
if the
TFT works.

Well, I tried several but only get a white screen. I used a uno and
attached the tft to - as pins match ...tried other sketches -
still only
a white screen
I tried other arduino, atmega 2560 and adjusted the pins
accordingly ,
same results, they compile and upload but nothing but a white
screen.

1. Do you have an exact source where you purchased your display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV



--
Michigan VHF Corp.





--
Michigan VHF Corp.


Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

 

I have the??MCUFRIEND_kbv library loaded and it compiles with some ino examples but only white screen.

Joe

On Mon, Jun 12, 2017 at 10:27 PM, Vince Vielhaber <vev@...> wrote:
Go to and do a search for MCUFRIEND_kbv.? That driver should work.

Vince.



On 06/12/2017 09:16 PM, Joe wrote:
Jack,

I have been experimenting while waiting for my remaining few parts to
arrive.

I purchase a 2.8 inch tft display ( it says on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example to test if the
TFT works.

Well, I tried several but only get a white screen.? I used a uno and
attached the tft to - as pins match ...tried other sketches - still only
a white screen
I tried other arduino, atmega 2560 and adjusted the pins accordingly ,
same results, they compile and upload but nothing but a white screen.

1. Do you have an exact source where you purchased your display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV



--
? Michigan VHF Corp.? ?? ?
? ? ? ? ? ? ? ? ? ? ? ? ?





Re: W8TEE TFT /VFO BOARD - WHICH DISPLAY?

Vince Vielhaber
 

Go to www.arduino.cc and do a search for MCUFRIEND_kbv. That driver should work.

Vince.

On 06/12/2017 09:16 PM, Joe wrote:
Jack,

I have been experimenting while waiting for my remaining few parts to
arrive.

I purchase a 2.8 inch tft display ( it says mcufriends.com on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example to test if the
TFT works.

Well, I tried several but only get a white screen. I used a uno and
attached the tft to - as pins match ...tried other sketches - still only
a white screen
I tried other arduino, atmega 2560 and adjusted the pins accordingly ,
same results, they compile and upload but nothing but a white screen.

1. Do you have an exact source where you purchased your display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV

--
Michigan VHF Corp.


W8TEE TFT /VFO BOARD - WHICH DISPLAY?

 

Jack,

I have been experimenting while waiting for my remaining few parts to arrive.

I purchase a 2.8 inch tft display ( it says mcufriends.com on it)

It has appears to have the correct pins / jacks etc.

The problem is I thought I would try to find an example to test if the TFT works.

Well, I tried several but only get a white screen. ?I used a uno and attached the tft to - as pins match ...tried other sketches - still only a white screen
I tried other arduino, atmega 2560 and adjusted the pins accordingly , same results, they compile and upload but nothing but a white screen.

1. Do you have an exact source where you purchased your display?
2. Any guidance to further test my current display?
3. The photo below is my current display..


Any help would be appreciated

Joe
VE1BWV


Re: Struggling with tuning clicks and birdie sounds

 

Tuning clicks here with 1.14.1 compiled against the correct library.? No shielded wiring, so it may be a hardware problem, but the clicks don't bother me enough to want to rewire.

What does bother me is a horrific buzzing sound whenever I dip into a setting from the settings menu.? It wasn't there when 1.13.
--
Darren, W9ZIM


Re: verifing raduino 1.14.1 -> error: too many decimal points in number

 

¿ªÔÆÌåÓý

You may have to switch your keyboard language. I am guessing but it seems to be seeing commas as decimal points.

?

v/r

Fred W4JLE

?

From: [email protected] [mailto:[email protected]] On Behalf Of EA3IAV
Sent: Monday, June 12, 2017 18:12
To: [email protected]
Subject: Re: [BITX20] verifing raduino 1.14.1 -> error: too many decimal points in number

?

this is the highlighted line in red

? ? ? ? <td id="LC1447" class="blob-code blob-code-inner js-file-line"> ?<span class="pl-c1">strcpy</span> (c, <span class="pl-s"><span class="pl-pds">&quot;</span>Raduino v1.14.1 <span class="pl-pds">&quot;</span></span>);</td>



i am using?

v2.01 of the si5351 library


Re: verifing raduino 1.14.1 -> error: too many decimal points in number

EA3IAV
 

Sorry I realized my silly mistake
Everything is ok now

my function button works nicely now!

thank you!