Search found 2099 matches

by BenR
Fri Mar 13, 2026 1:59 pm
Forum: General
Topic: PIC32MM0256GPM48
Replies: 1
Views: 89

Re: PIC32MM0256GPM48

Hello,

It looks like this device is currently not supported by the compiler in the Flowcode PIC32 toolchain. I can maybe have a look at adding this device into Flowcode but you will have to install your own version of the XC32 compiler to compile to this device.
by BenR
Tue Mar 10, 2026 8:43 pm
Forum: General
Topic: Please Add PIC16F152xx (PIC15276....)
Replies: 4
Views: 1162

Re: Please Add PIC16F152xx (PIC15276....)

Hello, These chips have now been added for you and should be live now in the v11 library updates. I've tried to be fairly thorough with the definitions but I haven't done much testing on them so please let us know if you find anything that either doesn't compile or isn't working as it should on the ...
by BenR
Mon Mar 09, 2026 5:05 pm
Forum: General
Topic: Please Add PIC16F152xx (PIC15276....)
Replies: 4
Views: 1162

Re: Please Add PIC16F152xx (PIC15276....)

Hello, Thanks for the suggestion, I'll get them on the list and see if we can get these in ASAP for you. As you say hopefully not too much work though you may have to use your own version of the XC8 compiler if they are not supported in the standard Flowcode toolchain compiler. See here for details ...
by BenR
Sun Mar 08, 2026 9:28 am
Forum: General
Topic: FC11---AVR_CAL_HBRIDGE.c (Closed)
Replies: 2
Views: 941

Re: FC11---AVR_CAL_HBRIDGE.c: No such file or directory

Hello,

I could be wrong but I don't think there are any avr devices with internal hbridge peripherals.
by BenR
Fri Mar 06, 2026 2:44 pm
Forum: Feature Requests
Topic: ESP32S3 Mini-1 as target
Replies: 4
Views: 1511

Re: ESP32S3 Mini-1 as target

Hi Stefan,

Great spot thanks for letting us know, should be sorted for you now.
by BenR
Fri Mar 06, 2026 10:35 am
Forum: Feature Requests
Topic: Web Developer with BLE
Replies: 13
Views: 2890

Re: Web Developer with BLE

According to Google - Bluefy is a browser app you can install on an iPhone, iPad to allow WebBluetooth. Please note I haven't tested this and have no other reference for the app. https://apps.apple.com/us/app/bluefy-web-ble-browser/id1492822055 What's odd to me is that this works yet chrome does not.
by BenR
Wed Mar 04, 2026 10:48 am
Forum: General
Topic: Display manager!
Replies: 8
Views: 1637

Re: Display manager!

Aha sorry the decisions in the DC_Touched were not checking against the .Handle variable and so were always true.

They should have looked like this.
Screenshot 2026-03-04 104748.png
Screenshot 2026-03-04 104748.png (10.51 KiB) Viewed 1459 times
Should be fixed now.
DisplayCreatorSelf2.fcfx
(41.43 KiB) Downloaded 99 times
by BenR
Tue Mar 03, 2026 3:30 pm
Forum: General
Topic: Display manager!
Replies: 8
Views: 1637

Re: Display manager!

Right I've tweaked the example a bit to have a main menu on scene 0 and a basic voltmeter on scene 1. All of the button touches are processed by the DC_Touched callback macro. Any additional scene processing e.g. the volt meter updates are done as part of the main loop. The display should update eve...
by BenR
Mon Mar 02, 2026 3:34 pm
Forum: General
Topic: Display manager!
Replies: 8
Views: 1637

Re: Display manager!

I'm not fully sure what you're trying to do but I have modified your program slightly so that you can start a count, and stop the count again or when the count reaches 20 it will automatically stop and return to scene 0. Hopefully highlights things a bit better. DisplayCreatorSelf1.fcfx To move thin...
by BenR
Mon Mar 02, 2026 3:26 pm
Forum: General
Topic: Display manager!
Replies: 8
Views: 1637

Re: Display manager!

It looks like you are using the DC_Touched macro to block with a loop but this is probably not ideal as you essentially stop any future touches from being actioned while you are blocking here. I've added a new macro to the DisplayManager called GetSceneIdx which returns the current scene index. You ...