How do I move my circle around?

General discussion on Visual TFT Software.
Post Reply
Author
Message
Anoniem
Posts: 6
Joined: 28 Feb 2016 20:54

How do I move my circle around?

#1 Post by Anoniem » 11 Feb 2023 17:48

Hi

I'm using Clicker 2 for dsPIC33 and mikroC PRO for dsPIC and the ConnectEVE with the FT800 chip.

I got to ConnectEVE to work and I can show a simple circle on it, now I want to move it around with just a for loop.

What is the best way to do it?

Kind regards,
Boyd.

Anoniem
Posts: 6
Joined: 28 Feb 2016 20:54

Re: How do I move my circle around?

#2 Post by Anoniem » 11 Feb 2023 18:48

Hi

I found the solution.

for(i = 1; i < 400; i++)
{

Circle1.Left = i;
DrawScreen(&Screen1);
Delay_ms(100);
}

drage1994
Posts: 1
Joined: 04 Oct 2023 04:33

Re: How do I move my circle around?

#3 Post by drage1994 » 04 Oct 2023 04:35

Anoniem wrote:
11 Feb 2023 18:48
Hi

I found the solution.

for(i = 1; i < 400; i++)
{

Circle1.Left = i;
DrawScreen(&Screen1);
Delay_ms(100);
}
It works. Thanks for solution.

foundationseem
Posts: 1
Joined: 20 Nov 2023 05:43

Re: How do I move my circle around?

#4 Post by foundationseem » 20 Nov 2023 05:45

Anoniem wrote:
11 Feb 2023 18:48
Himoto x3m

I found the solution.

for(i = 1; i < 400; i++)
{

Circle1.Left = i;
DrawScreen(&Screen1);
Delay_ms(100);
}
It work for me. thx aloy :mrgreen:

Post Reply

Return to “Visual TFT General”