Search found 2097 matches

by BenR
Mon Mar 09, 2026 5:05 pm
Forum: General
Topic: Please Add PIC16F152xx (PIC15276....)
Replies: 2
Views: 462

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

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: 2
Views: 818

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

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

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 1002 times
Should be fixed now.
DisplayCreatorSelf2.fcfx
(41.43 KiB) Downloaded 83 times
by BenR
Tue Mar 03, 2026 3:30 pm
Forum: General
Topic: Display manager!
Replies: 8
Views: 1180

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

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

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 ...
by BenR
Mon Mar 02, 2026 9:41 am
Forum: General
Topic: Page webserver
Replies: 2
Views: 597

Re: Page webserver

Hello, The easy way to allow for more files is to change from embedded pages to external using the HTML source property of the Webserver component and a FAT component. You can then put all your HTML source onto an SD card. https://www.flowcode.co.uk/wiki/index.php?title=Component:_Webserver_(GENERIC...
by BenR
Wed Feb 25, 2026 9:55 am
Forum: General
Topic: connecting pwm output to low pass filter
Replies: 1
Views: 403

Re: connecting pwm output to low pass filter

Hello, For a single tone output at a time the easiest way to do this is to change the PWM frequency by altering the prescalers, rollover period and duty. There is I beleive a ChangeFrequency function that should make this fairly easy. The PWM frequency itself would be changed to 1, 1.5, 2KHz. This i...