Search found 1733 matches

by BenR
Mon May 13, 2024 4:09 pm
Forum: General
Topic: ESP32 and LSM9DS1 not compiling
Replies: 19
Views: 5134

Re: ESP32 and LSM9DS1 not compiling

Hi Stefan,

Thanks for that, hopefully resolved now.
by BenR
Mon May 13, 2024 3:29 pm
Forum: App Developer
Topic: Worked examples HTTP via serial port
Replies: 3
Views: 20

Re: Worked examples HTTP via serial port

Hello,

The Flowcode web developer now has a component to allow you to do serial communications from inside the web page. Hopefully that's what you're after but if not then let us know.
by BenR
Mon May 13, 2024 2:05 pm
Forum: General
Topic: ESP32 and LSM9DS1 not compiling
Replies: 19
Views: 5134

Re: ESP32 and LSM9DS1 not compiling

Hi Stefan, Sorry for the delay and many thanks for reporting your findings on the various issues. I beleive I have now fixed all of the following... 1.After saving and opening the project, the information about the channel of the LSM9ds1 is lost. This is not pleasant, especially with several LSM9ds1...
by BenR
Thu May 09, 2024 2:23 pm
Forum: User Components
Topic: SPI version of the ST 7920 GLCD
Replies: 7
Views: 189

Re: SPI version of the ST 7920 GLCD

Ok sounds like the write is maybe working but the read back isn't. I'll have another look at the code.
by BenR
Wed May 08, 2024 11:19 am
Forum: General
Topic: 5 VL53L0X sensors on one I2C line. [SOLVED]
Replies: 4
Views: 186

Re: 5 VL53L0X sensors on one I2C line.

Hi Sasi, Aha thanks for the information. I've now added a new ChangeI2CAddress macro to the component which should do the address change for you. You will have to manage the XSHUT pins yourself using output icons to ensure you're only talking to a single device. The latest version of the component i...
by BenR
Wed May 08, 2024 9:28 am
Forum: General
Topic: WIKI ESP32 example (WLAN)
Replies: 2
Views: 84

Re: WIKI ESP32 example (WLAN)

Hello,

Try using the IP 192.168.4.1 this is usually the IP for the ESP32 host.
by BenR
Tue May 07, 2024 3:31 pm
Forum: Feature Requests
Topic: Acceleration/Deceleration function for Stepper Motor.
Replies: 3
Views: 61

Re: Acceleration/Deceleration function for Stepper Motor.

Hello, Arduino is targetting a handful of specific microcontroller devices and the library is likely targetting only a subset of these. So if you're using one of those devices and you're not using the timer resource required by the library elsewhere in your program then it should work fine. The down...
by BenR
Tue May 07, 2024 2:35 pm
Forum: General
Topic: 5 VL53L0X sensors on one I2C line. [SOLVED]
Replies: 4
Views: 186

Re: 5 VL53L0X sensors on one I2C line.

Hello Sasi, The VL53L0X device has a fixed I2C address and so you can only use one on a specific I2C bus. So the options are use different I2C busses for each sensor or use something like this to multiplex the I2C signals to the device you want. https://www.adafruit.com/product/2717 I can probably g...
by BenR
Tue May 07, 2024 2:22 pm
Forum: Bug Reports
Topic: BL0061-1 does not function in debug ICD mode....
Replies: 2
Views: 39

Re: BL0061-1 does not function in debug ICD mode....

Hello Leif,

Is it possible for you to attach your Flowcode project file and we'll try and replicate the problem here.
by BenR
Tue May 07, 2024 2:20 pm
Forum: General
Topic: FLASH EEPROM not write
Replies: 1
Views: 84

Re: FLASH EEPROM not write

Hello, Looks like the flash access routines for the PIC32 have not yet been implemented. Might be easier for you to use an external EEPROM IC. I'll see if we can investigate the PIC32 Flash write routines and add this functionality. I imagine it hasn't currently been done because a) it's a tricky ta...