Search found 1282 matches

by Steve-Matrix
Tue Dec 09, 2025 11:32 am
Forum: Tips & Tricks
Topic: Flowcode YouTube Videos Links
Replies: 7
Views: 587

Re: Flowcode YouTube Videos Links

There are pages on the wiki that may help, such as:
https://www.flowcode.co.uk/wiki/index.p ... ay_Creator

The components that can be dragged into a Display Creator window can be found in:

Code: Select all

Component Libraries...Displays...Graphical Manager Primitives
by Steve-Matrix
Tue Dec 09, 2025 10:06 am
Forum: General
Topic: PIC16 toolchain for FC9
Replies: 22
Views: 14060

Re: PIC16 toolchain for FC9

Please post your msg.txt file as that might offer some clues as to why it is not working for you.
by Steve-Matrix
Tue Dec 09, 2025 10:00 am
Forum: General
Topic: Error codes when compiling to target
Replies: 1
Views: 49

Re: Error codes when compiling to target

If I search for that "avrdude.exe: stk500_loadaddr(): (a) protocol error, expect=0x14, resp=0x08" error on the web, I get the following suggestions: checking your USB cable/port ensuring the correct board/port is selected closing other serial programs pressing the board's reset button just...
by Steve-Matrix
Mon Dec 08, 2025 9:41 am
Forum: General
Topic: 2nd HDMI port on Pi 4 & 5
Replies: 2
Views: 114

Re: 2nd HDMI port on Pi 4 & 5

I suspect this is not currently possible with Flowcode. It's a long time since I have used a Raspberry Pi and I don't have a 4B to test with.

I'm sure there would be a way, but this probably involves custom code and some advanced tricks.
by Steve-Matrix
Mon Dec 08, 2025 9:17 am
Forum: Tips & Tricks
Topic: Flowcode YouTube Videos Links
Replies: 7
Views: 587

Re: Flowcode YouTube Videos Links

Many of the projects in the videos are part of the examples that can be opened when you start Flowcode (New project...Open an example or template). For these 2 videos, the projects are both under the "Introduction to micros" section for PIC, Arduino and ESP32. Although the "colour dis...
by Steve-Matrix
Thu Dec 04, 2025 3:53 pm
Forum: User Components
Topic: Flowcode document name
Replies: 8
Views: 298

Re: Flowcode document name

The constant is a string and should be called "MYFILENAME". Yes, you will need to create the variables. The alternative is to export the macro from my project and import it into your project. This will retain the local variables, but you will need to manually link this to the AddConst even...
by Steve-Matrix
Thu Dec 04, 2025 2:47 pm
Forum: User Components
Topic: Flowcode document name
Replies: 8
Views: 298

Re: Flowcode document name

Here are the steps that I did to create it in that attached project: Create a global constant Double-click the Compile::Ev_AddConst event in Project Explorer Double-click <Add new> Click "OK" Click "OK and Edit Macro" Add code as per my example to the Ev_AddConst macro If the &qu...
by Steve-Matrix
Thu Dec 04, 2025 1:26 pm
Forum: User Components
Topic: Flowcode document name
Replies: 8
Views: 298

Re: Flowcode document name

Hopefully the attached project shows you how to do it. I used a combination of the "AddConst" event to manipulate the value (and size) of a constant and the "Expand.PathName" to retrieve the name of the file. If you compile the project, the "MYFILENAME" Flowcode constan...
by Steve-Matrix
Thu Dec 04, 2025 10:53 am
Forum: Feature Requests
Topic: FRAM COMPONENT
Replies: 14
Views: 821

Re: FRAM COMPONENT

Ben is the master of this kind of thing, but I think you can use it in conjunction with the Ev_AddHeader event. This allows you to change or add to the C code generated for the component. Here's a snippet from the GLCD_Base component: Screenshot 2025-12-04 103037.png In your case, you could potentia...
by Steve-Matrix
Thu Dec 04, 2025 9:39 am
Forum: General
Topic: ESP32 UART-USB Brige How to use
Replies: 29
Views: 6323

Re: ESP32 UART-USB Brige How to use

May also need "main"?