Search found 1371 matches

by Steve-Matrix
Fri Mar 06, 2026 3:54 pm
Forum: Bug Reports
Topic: Flowcode crashing when trying to add componets to 2d panel
Replies: 9
Views: 339

Re: Flowcode crashing when trying to add componets to 2d panel

The version number can be found via the "?" in the top-right of Flowcode's screen: Screenshot 2026-03-06 154943.png The components will be loaded from this location: %PROGRAMDATA%\MatrixTSL\FlowcodeV10\ Typically, this will resolve to "C:\ProgramData\MatrixTSL\FlowcodeV10". Flowc...
by Steve-Matrix
Fri Mar 06, 2026 3:36 pm
Forum: Bug Reports
Topic: Flowcode crashing when trying to add componets to 2d panel
Replies: 9
Views: 339

Re: Flowcode crashing when trying to add componets to 2d panel

AndyJ1974 wrote:
Fri Mar 06, 2026 3:27 pm
How do you find the version? It was installed in Nov 25 so I'm guessing its the latest
There is a question mark in the top-right of Flowcode that shows the version of the software.
by Steve-Matrix
Fri Mar 06, 2026 3:35 pm
Forum: Bug Reports
Topic: Flowcode crashing when trying to add componets to 2d panel
Replies: 9
Views: 339

Re: Flowcode crashing when trying to add componets to 2d panel

Thanks for those answers. I've just checked and I have no problem adding those components so I am unsure what the problem could be. Assuming you have the latest version of Flowcode v10 and the latest version of the components, the issue must be something unusual with your PC setup. Is there anything...
by Steve-Matrix
Fri Mar 06, 2026 3:12 pm
Forum: Bug Reports
Topic: Flowcode crashing when trying to add componets to 2d panel
Replies: 9
Views: 339

Re: Flowcode crashing when trying to add componets to 2d panel

Sorry, but it would help if you could answer these questions: Is this every component or just some of them? (and please name a few of the components that do not work) Does it make any difference if you add the components by right-clicking in the component menu or dragging them onto the panel? Which ...
by Steve-Matrix
Fri Mar 06, 2026 12:35 pm
Forum: Bug Reports
Topic: Flowcode crashing when trying to add componets to 2d panel
Replies: 9
Views: 339

Re: Flowcode crashing when trying to add componets to 2d panel

Is this every component or just some of them? And does it make any difference if you add the components by right-clicking in the component menu or dragging them onto the panel?

Also, have you fully updated your components via "Help...Library Updates"?
by Steve-Matrix
Thu Mar 05, 2026 2:43 pm
Forum: Feature Requests
Topic: Web Developer with BLE
Replies: 13
Views: 1222

Re: Web Developer with BLE

Thanks, Stefan.

It looks like iPhone does not support BLE via HTML:
https://caniuse.com/web-bluetooth
by Steve-Matrix
Tue Mar 03, 2026 12:07 pm
Forum: General
Topic: Compile problem with FC11
Replies: 38
Views: 1977

Re: Compile problem with FC11

If I use the following, I get a .cof file:

Code: Select all

--output=mcof
by Steve-Matrix
Tue Mar 03, 2026 10:14 am
Forum: General
Topic: Compile problem with FC11
Replies: 38
Views: 1977

Re: Compile problem with FC11

I've not tried it, but -gcoff might generate a .cof file when used as a command line switch for xc8.
by Steve-Matrix
Mon Mar 02, 2026 9:30 am
Forum: General
Topic: Page webserver
Replies: 2
Views: 347

Re: Page webserver

I don't think there is a way of increasing this without editing the component (edit: there is :oops: - see Ben's answer!). An alternative is you could serve the pages manually instead of relying on static pages. It's more work, but would allow you to show any number of different pages.
by Steve-Matrix
Mon Mar 02, 2026 9:27 am
Forum: General
Topic: Display manager!
Replies: 8
Views: 677

Re: Display manager!

I've not looked at your project, but the "Switch to Scene0" button should call a macro. In that macro you could change the value of a global variable (e.g. ExitTheLoop = true) and continually check that variable within your loop and react accordingly. That should allow you to leave the loo...