Search found 1906 matches

by BenR
Fri May 30, 2025 1:15 pm
Forum: Feature Requests
Topic: SSD1305 Display with I2C interface
Replies: 7
Views: 237

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: 1094

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: 3
Views: 150

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: 237

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: 237

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: 237

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.
by BenR
Fri May 23, 2025 11:38 am
Forum: General
Topic: REMAP TX/RX PIN IN WLAN-ESP8266 COMPONENT
Replies: 3
Views: 366

Re: REMAP TX/RX PIN IN WLAN-ESP8266 COMPONENT

Hi Basil,

Not sure what you mean here. do you mean the connections are lost or simply you don't have access to remap the pins? Can you attach your project so we can have a look?

I've tried to replicate the problem but it all seems to be working ok.
by BenR
Wed May 21, 2025 3:24 pm
Forum: General
Topic: Disappearing components libraries
Replies: 2
Views: 244

Re: Disappearing components libraries

Hello, Please can you check that you do a full database library update. Some of the components dissapearing is due to the component underneath changing and refering to a new component you don't have on your computer. We made this change to try and speed up the loading of projects by removing some of...
by BenR
Wed May 21, 2025 3:05 pm
Forum: Projects - Embedded
Topic: GLCD SSD1306 i2C - Display Artifacts
Replies: 6
Views: 591

Re: GLCD SSD1306 i2C - Display Artifacts

Hello, The latest version on the library update system should now also be fixed and good to go. It has the additional feature of the Refresh Mode property which allows you to redraw the entire display in one go which can be a lot faster and less flickery. To use simply set the Refresh Mode property ...
by BenR
Fri May 16, 2025 9:40 am
Forum: Bug Reports
Topic: ESP32 4Bit SD-Mode Init problem
Replies: 24
Views: 12799

Re: ESP32 4Bit SD-Mode Init problem

Hi Stefan, I'd probably need to see your program to be able to comment. One thing could be the ESP IDF adding delays. Are you writing byte by byte? It might be better if you can put in an array in one go as the SD mode likely uses DMA to write to the card in a burst and writing byte by byte probably...