Search found 1910 matches

by BenR
Mon Jun 30, 2025 4:11 pm
Forum: General
Topic: Copile Error
Replies: 7
Views: 422

Re: Copile Error

Hi Enrique,

That warning is because you are using functions or delays as part of your main program loop and also as part of an interrupt. All that it's saying is that it will make two copies of the functions so that there isn't a clash or corruption during runtime.
by BenR
Fri Jun 27, 2025 4:28 pm
Forum: General
Topic: Help! Flash EEPROM Component
Replies: 3
Views: 186

Re: Help! Flash EEPROM Component

Hello, The FlashEEPROM component is setup to have 256 16-bit values available however in your initialisation and write functions you are writing to address 20481. This should be in the range 0-255, probably 1 as the EEPROM component itself manages the offset address. Secondly you are writing to the ...
by BenR
Fri Jun 27, 2025 4:19 pm
Forum: General
Topic: Please help me change the properties of components
Replies: 6
Views: 238

Re: Please help me change the properties of components

Hello,

What is your WIFI / Ethernet component layer? Some of these have a channel allowing for multiple concurrent connections but others do not. If you let us know which you're using then I can see if there is a way to bump one of the IoT components to a different channel.
by BenR
Fri Jun 27, 2025 4:15 pm
Forum: Bug Reports
Topic: PIC18F26/45/46Q10 and IOC
Replies: 2
Views: 112

Re: PIC18F26/45/46Q10 and IOC

Hi Dirk,

That's been added for you now.
by BenR
Fri May 30, 2025 1:15 pm
Forum: Feature Requests
Topic: SSD1305 Display with I2C interface
Replies: 7
Views: 530

Re: SSD1305 Display with I2C interface

Aha ok that's looking promising.

There is an interlace property, does changing that make a difference?

Looking at the datasheets 0x78 is an SSD1306 device address.
by BenR
Fri May 30, 2025 1:09 pm
Forum: Bug Reports
Topic: gLCD (SSD1306) I2C missing bottom 9 lines/pixel rows
Replies: 2
Views: 1210

Re: gLCD (SSD1306) I2C missing bottom 9 lines/pixel rows

Hello, Thanks for letting us know on this. I've looked at the code and I can't see why this would be happening. I only have a 32-pixel high display so hard for me to replicate at the moment. If you draw a line from 0,0 to 127,63 then what does that look like? Are you using the new Refresh Mode Prope...
by BenR
Fri May 30, 2025 11:46 am
Forum: Bug Reports
Topic: PIC CCP wont run if Internal CAN Enabled
Replies: 4
Views: 450

Re: PIC CCP wont run if Internal CAN Enabled

Hello, I've just had a look and the internal CAN doesn't seem to use Timer 3 or CCP and so shouldn't cause an issue. If you need to have a look at the CAN code then it's available here. Just copy and paste the address into the file browser address bar. C:\ProgramData\MatrixTSL\FlowcodeV10\CAL\PIC Th...
by BenR
Fri May 30, 2025 11:28 am
Forum: Feature Requests
Topic: SSD1305 Display with I2C interface
Replies: 7
Views: 530

Re: SSD1305 Display with I2C interface

Hello, I also tried the gLCD_SSD1305_i2c macro. If I set the address to 0x78, the display worked, but the image was distorted. Great sounds like we're close. Can you attach an image of the simulation vs the hardware so I can see the distortion, that might give me a clue as to what's wrong. I've also...
by BenR
Thu May 29, 2025 4:46 pm
Forum: Feature Requests
Topic: SSD1305 Display with I2C interface
Replies: 7
Views: 530

Re: SSD1305 Display with I2C interface

Having a look now and it looks like the main difference is the I2C device address. I've made a new component for the SSD1305 I2C now and pushed to the library updates. You will need to do a full database update to get it. Let us know how you get on. It might not be totally compatible with the SSD130...
by BenR
Thu May 29, 2025 4:38 pm
Forum: Feature Requests
Topic: SSD1305 Display with I2C interface
Replies: 7
Views: 530

Re: SSD1305 Display with I2C interface

Hi Sasi,

It might work as is with the SSD1306 I2C component. I would give that a go and let us know how you get on.