Re: FC components and AI (ideas?)
Posted: Wed Jan 21, 2026 9:40 am
External code can be included in Supplementary Code. See: https://www.flowcode.co.uk/wiki/index.p ... ntary_Code
Instead of adding the code directly to Flowcode, add statements into Supplementary Code such as the following to point it at external files:
You can then call any external C functions in your code by adding a C icon to your Flowcode macros.
Instead of adding the code directly to Flowcode, add statements into Supplementary Code such as the following to point it at external files:
Code: Select all
#include "C:\MyFolder\MyCode.h"Code: Select all
#include "C:\MyFolder\MyCode.c"