GREAT, Thx to both of you. Yes, I will try variations of 'fill circles / use two or more adjacent lines / fill between lines,' and propagate them out.
Yes, I read through the GFX lib (and have it functioning on same 1.8 LCD). Yes, was not a simple code crossover to tft (at least for me). I like the tft lib and command structure. Works very well and is pretty straight forward.
Basically the 'fill circle and cover over with another circle' is the initial effect I got with :
for ( int i = 0; i < 2; i ++ )
{
tft.fill( GREEN );
tft.circle(80, 124, 10);
tft.circle(80, 124, 20);
tft.circle(80, 124, 30);
tft.circle(80, 124, 40);
tft.circle(80, 124, 50);
tft.circle(80, 124, 60);
tft.circle(80, 124, 70);
tft.circle(80, 124, 80);
tft.circle(80, 124, 90);
tft.circle(80, 124, 100);
tft.fill( BLACK );
tft.circle(80, 124, 10);
tft.circle(80, 124, 20);
tft.circle(80, 124, 30);
tft.circle(80, 124, 40);
tft.circle(80, 124, 50);
tft.circle(80, 124, 60);
tft.circle(80, 124, 70);
tft.circle(80, 124, 80);
tft.circle(80, 124, 90);
tft.circle(80, 124, 100);
tft.background( BLACK );
}
I will try to blend my codes , make it as simple as possible, and see what happens.
