Hi,
How can I draw a Bar with segments?
I want draw a BAr with segemnts with a space from about 10pixel each
Is there any way, how I can do that=
Because there is no STEP command in my Pascal (Mikroe Pascal for ARM Controller)
x1:=100; y1:=10; x2:=150; y2:=20;
TFT_Rectangle(x1, y1, x2, y2);
For y1:=10 TO 200 DO
Begin
TFT_Rectangle(x1, (y1+20), x2, (y2+20));
end;
[code]