Hello,
Yes the pwm channels and pins that are available now should all work fine without resorting to using any C code. It's just the high speed PWM peripheral that is currently unsupported which are the pins marked PWMxH, PWMxL in the device datasheet.
Search found 2087 matches
- Fri Feb 20, 2026 10:48 am
- Forum: General
- Topic: dsPIC33 Sample ADC synchronous with PWM
- Replies: 8
- Views: 890
- Fri Feb 20, 2026 10:39 am
- Forum: Bug Reports
- Topic: PIC16F1788/9 ADC Resolution
- Replies: 6
- Views: 148
Re: PIC16F1788/9 ADC Resolution
Hi Simon,
Hopefully resolved for you now via the library updates.
Let us know how you're getting on.
Hopefully resolved for you now via the library updates.
Let us know how you're getting on.
- Thu Feb 19, 2026 10:18 am
- Forum: General
- Topic: dsPIC33 Sample ADC synchronous with PWM
- Replies: 8
- Views: 890
Re: dsPIC33 Sample ADC synchronous with PWM
On further investigation it looks like there might be one or two technical issues with allowing the 16-bit PIC high speed PWM. For the 8-bit PICs the advanced PWM modules continue numbering from the CCP PWM but on the 16-bit PIC the numbers start again from 1 so the channel selection gets complicate...
- Thu Feb 19, 2026 9:53 am
- Forum: General
- Topic: dsPIC33 Sample ADC synchronous with PWM
- Replies: 8
- Views: 890
Re: dsPIC33 Sample ADC synchronous with PWM
Hello,
Currently the definition for that family is only targetting the Output Compare / CCP type PWM. I'll investigate how easy it would be to also add support for the further 3 high speed PWM channels.
Currently the definition for that family is only targetting the Output Compare / CCP type PWM. I'll investigate how easy it would be to also add support for the further 3 high speed PWM channels.
- Tue Feb 17, 2026 2:38 pm
- Forum: User Components
- Topic: FC components and AI (ideas?)
- Replies: 18
- Views: 18573
Re: FC components and AI (ideas?)
That looks very professional well done and many thanks for sharing.
Would you mind if we took it and made it into a component that's part of the package?
Would you mind if we took it and made it into a component that's part of the package?
- Tue Feb 17, 2026 2:33 pm
- Forum: Projects - Embedded
- Topic: using personnal arduino library insite flowcode
- Replies: 4
- Views: 268
Re: using personnal arduino library insite flowcode
Hello, The UART component can replace the Serial.print for you, digitalWrite can be done by using an output icon. What Arduino library are you interested in and maybe we can convert it into a Flowcode component for you. Using an Arduino library directly in Flowcode at the moment without some form of...
- Tue Feb 17, 2026 2:25 pm
- Forum: App Developer
- Topic: how to call a dll from app developper
- Replies: 1
- Views: 206
Re: how to call a dll from app developper
Hello Hadrien, Here's the visual studio source code for a DLL I made recently to perform BLE communications. Please note that Flowcode is a 32-bit application so the DLL must also be compiled as 32-bit x86. BLE DLL.zip In Flowcode you declare the DLL functions the same way as making a macro. In the ...
- Mon Feb 16, 2026 3:10 pm
- Forum: General
- Topic: Display manager macro Colours property
- Replies: 1
- Views: 371
Re: Display manager macro Colours property
Hello, If your using the display creator components on the scene then you don't have to manually call CreateObject / CreateWidget. Some info here on this. https://www.flowcode.co.uk/wiki/index.php?title=Display_Creator If you still want to call those functions yourself then you can do so by providin...
Re: PWM Woes
Hello Alan, Is it this you mean? The selections in the interrupt component differentiate between IOC and Int0 so I think that selecting int0 should give me the individual action. However, selecting int0 allows all portA pins to run the interrupt macro. I suspect that FC sees no difference. Maybe it'...
- Mon Feb 16, 2026 2:57 pm
- Forum: Feature Requests
- Topic: Appdeveloper: use a short key?
- Replies: 2
- Views: 197
Re: Appdeveloper: use a short key?
Hi Stefan, For PC developer you can use Key Mappings available from the Edit menu. You can assign a calculation to a keypress, for example I have this to toggle a variable on and off when the S key is pressed. KeyMappings.jpg You can monitor for this variable changing by having a decision in your ma...