Search found 1371 matches
- 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...
- 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
- 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...
- 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 ...
- 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"?
Also, have you fully updated your components via "Help...Library Updates"?
- 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
It looks like iPhone does not support BLE via HTML:
https://caniuse.com/web-bluetooth
- 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- 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.
- 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
- 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.
- 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...