Search found 518 matches

by stevedee
Tuesday 27th April 2021 3:55pm
Forum: Beginners
Topic: Debugging: Stop program if variable = value ?
Replies: 9
Views: 20543

Re: Debugging: Stop program if variable = value ?

...While debugging, I want the program to stop/break if variable xy has a determined value. Can you do that with the Gambas IDE? That's a great question. It doesn't look like this feature is included in Gambas breakpoint options. I did find that if you run code until it stops at a line breakpoint, ...
by stevedee
Tuesday 27th April 2021 1:32pm
Forum: Lounge
Topic: What's happening with v3.16.0 updates?
Replies: 13
Views: 12817

Re: What's happening with v3.16.0 updates?

cogier wrote: Tuesday 27th April 2021 11:41am
I currently have -build12 installed, but -build13 is now listed and I guess that's the one that is giving you a problem.
Where do you find the 'Build' information?
In Synaptic...
GambasBuildNo.png
GambasBuildNo.png (58.77 KiB) Viewed 5385 times
by stevedee
Tuesday 27th April 2021 7:15am
Forum: Lounge
Topic: What's happening with v3.16.0 updates?
Replies: 13
Views: 12817

Re: What's happening with v3.16.0 updates?

sjsepan wrote: Monday 26th April 2021 9:45pm stevedee,
running the install for the failed package seems to have worked
Steve S
Many thanks Steve
by stevedee
Tuesday 27th April 2021 7:12am
Forum: Component
Topic: Function Rotate(Angle As Float) As Image
Replies: 13
Views: 11134

Re: Function Rotate(Angle As Float) As Image

I see that there is a function to rotate an image... Take a look at the Image class: https://gambaswiki.org/wiki/comp/gb.qt4/image Basically .Rotate returns a rotated copy of an image which you will then need to display (i.e. it doesn't just rotate an image directly on the screen) Maybe something l...
by stevedee
Tuesday 27th April 2021 6:52am
Forum: Component
Topic: Gambas + PIGPIO + I2C + ADS1115 A/D Chip
Replies: 16
Views: 19203

Re: Gambas + PIGPIO + I2C + ADS1115 A/D Chip

That's not going to work... it has something like READ_ADS(0) to read the port 0... it doesn't get into specifics as to how it does it... Your Python code (with lines like READ_ADS(0) ) will reference libraries. What I am suggesting is that we look at the library code. This library will probably al...
by stevedee
Monday 26th April 2021 9:23pm
Forum: Lounge
Topic: What's happening with v3.16.0 updates?
Replies: 13
Views: 12817

Re: What's happening with v3.16.0 updates?

sjsepan wrote: Monday 26th April 2021 8:12pm Just had a bunch here too, but the one today broke my Gambas...
I'm glad I noticed your post Steve.

I currently have -build12 installed, but -build13 is now listed and I guess that's the one that is giving you a problem.
by stevedee
Monday 26th April 2021 9:13pm
Forum: Component
Topic: Gambas + PIGPIO + I2C + ADS1115 A/D Chip
Replies: 16
Views: 19203

Re: Gambas + PIGPIO + I2C + ADS1115 A/D Chip

...The datasheet is here: https://www.ti.com/lit/ds/symlink/pcf8574.pdf Page 9 shows the address as follows: 0100aaar where aaa is the address set by jumpers, and r is 0 to 1 depending on if you want to write (0) or read (1). As my chip address pins are wired to the ground, it would make the addres...
by stevedee
Monday 26th April 2021 7:17am
Forum: Component
Topic: Gambas + PIGPIO + I2C + ADS1115 A/D Chip
Replies: 16
Views: 19203

Re: Gambas + PIGPIO + I2C + ADS1115 A/D Chip

I swear this chip is going to drive me crazy... a short drive actually . ...The PDF for the ADS1115: https://www.ti.com/lit/ds/symlink/ads1115.pdf Hi Jerry, I'll try to find time to look at the ADS1115 info later today. But in the meantime, I don't understand why you are only checking the function ...
by stevedee
Sunday 25th April 2021 7:42am
Forum: Lounge
Topic: What's happening with v3.16.0 updates?
Replies: 13
Views: 12817

What's happening with v3.16.0 updates?

I've lost count, but I seem to have had 3 or 4 updates to Gambas v3.16.0 since it was initially released, but each time, the version number remains at 3.16.0.

What's going on?
by stevedee
Sunday 25th April 2021 7:18am
Forum: Beginners
Topic: Multi line text areas
Replies: 6
Views: 5857

Re: Multi line text areas

BruceSteers wrote: Saturday 24th April 2021 9:48pm if there is a lot of text textarea can be glitchy using "Text = Text &" or "&=" as it refreshes the whole text...
That's interesting Bruce, what does this glitch look like?

I have never seen a problem.