Search found 1914 matches
- Fri Jul 11, 2025 7:24 pm
- Forum: Feature Requests
- Topic: TMC5160 STEPPER MOTOR CONTROL CHIP
- Replies: 1
- Views: 67
Re: TMC5160 STEPPER MOTOR CONTROL CHIP
Thanks for the suggestion, yes we can certainly look into creating a component around that IC.
- Thu Jul 10, 2025 2:18 pm
- Forum: General
- Topic: ESP32 C3 UART USB problem
- Replies: 3
- Views: 134
Re: ESP32 C3 UART USB problem
Hi Stefan,
I've made a good start with this now and aim to finish it off next week in between doing other things.
Atm it's looking very good and easy to implement and will become part of the standard USB Serial component.
I've made a good start with this now and aim to finish it off next week in between doing other things.
Atm it's looking very good and easy to implement and will become part of the standard USB Serial component.
- Thu Jul 10, 2025 9:48 am
- Forum: General
- Topic: ILI9488 TFT display
- Replies: 1
- Views: 297
Re: ILI9488 TFT display
Hello, For the fastest speed you ideally want to use the display in parrallel 16-bit mode and this will give you the fastest response. Displays will parrallel support are widely available on AliExpress. This means you need a uC with around 19 I/O pins you can dedicate to driving the display. Then yo...
- Thu Jul 10, 2025 9:40 am
- Forum: General
- Topic: ESP32 C3 UART USB problem
- Replies: 3
- Views: 134
Re: ESP32 C3 UART USB problem
Hello,
It looks like on that device there may not be a UART to USB bridge IC and so they expect you to use the USB peripheral as the comms. We don't currently support the USB on the ESP32 devices but I could add it to the list to investigate if that would help.
It looks like on that device there may not be a UART to USB bridge IC and so they expect you to use the USB peripheral as the comms. We don't currently support the USB on the ESP32 devices but I could add it to the list to investigate if that would help.
- Mon Jun 30, 2025 4:11 pm
- Forum: General
- Topic: Copile Error
- Replies: 7
- Views: 1345
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.
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.
- Fri Jun 27, 2025 4:28 pm
- Forum: General
- Topic: Help! Flash EEPROM Component
- Replies: 3
- Views: 1425
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 ...
- Fri Jun 27, 2025 4:19 pm
- Forum: General
- Topic: Please help me change the properties of components
- Replies: 6
- Views: 1435
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.
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.
- Fri Jun 27, 2025 4:15 pm
- Forum: Bug Reports
- Topic: PIC18F26/45/46Q10 and IOC
- Replies: 2
- Views: 5078
Re: PIC18F26/45/46Q10 and IOC
Hi Dirk,
That's been added for you now.
That's been added for you now.
- Fri May 30, 2025 1:15 pm
- Forum: Feature Requests
- Topic: SSD1305 Display with I2C interface
- Replies: 7
- Views: 1567
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.
There is an interlace property, does changing that make a difference?
Looking at the datasheets 0x78 is an SSD1306 device address.
- Fri May 30, 2025 1:09 pm
- Forum: Bug Reports
- Topic: gLCD (SSD1306) I2C missing bottom 9 lines/pixel rows
- Replies: 2
- Views: 1647
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...