Search found 1729 matches

by BenR
Wed May 08, 2024 11:19 am
Forum: General
Topic: 5 VL53L0X sensors on one I2C line. [SOLVED]
Replies: 4
Views: 123

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

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

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

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

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

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...
by BenR
Tue May 07, 2024 2:15 pm
Forum: Bug Reports
Topic: I have a PIC 32 USBCDC problem :roll:
Replies: 2
Views: 30

Re: I have a PIC 32 USBCDC problem :roll:

Hello, I think your project clock speed of 80MHz may be the cause of the problem. You might need to adjust your clock settings to get a rate of 48MHz to allow the USB to function. this may help. https://electronics.stackexchange.com/questions/223600/confusion-with-pic32mx1xx-2xx-datasheet-informatio...
by BenR
Tue May 07, 2024 2:05 pm
Forum: Feature Requests
Topic: Acceleration/Deceleration function for Stepper Motor.
Replies: 3
Views: 44

Re: Acceleration/Deceleration function for Stepper Motor.

Hello, It's all about how often you call the step macros. If you have it called as part of a loop or as part of a timer interrupt then you vary the delay in the loop or the speed of the interrupt to control the acceleration/deceleration of the motor. Doing this in a universal way as part of the comp...
by BenR
Sat May 04, 2024 11:14 pm
Forum: Bug Reports
Topic: PIC18F2480 with the servo controller component
Replies: 3
Views: 53

Re: PIC18F2480 with the servo controller component

Hello is it possible for you to use a more up to date version of the micro with 2 or more ccp available. The servo motor component uses two ccp peripherals on pic devices to do the servo motor timing.
by BenR
Fri May 03, 2024 4:42 pm
Forum: App Developer
Topic: App Developer connect to ESP32 S3 with USB
Replies: 10
Views: 836

Re: App Developer connect to ESP32 S3 with USB

SPI channel related error hopefully now fixed too.