Search found 146 matches

by kersing
Thu Mar 14, 2024 10:54 pm
Forum: Feature Requests
Topic: Ternary operator in calculation block?
Replies: 7
Views: 759

Re: Ternary operator in calculation block?

Yep, that’s what I thought a couple of years ago as well. Got declined as being unreadable for novice users. Hopefully it will be reconsidered…
by kersing
Sun Mar 03, 2024 8:05 pm
Forum: Feature Requests
Topic: 3 ideas for FC
Replies: 6
Views: 765

Re: 3 ideas for FC

Please don’t use yellow text. That’s unreadable for people using the light theme on the forum…

In like the suggestions!
by kersing
Sun Feb 25, 2024 8:11 pm
Forum: General
Topic: Flowcode 10 Slow response on programming environment
Replies: 5
Views: 322

Re: Flowcode 10 Slow response on programming environment

Are you running the latest version?
by kersing
Sun Feb 11, 2024 8:22 am
Forum: General
Topic: C Code
Replies: 4
Views: 384

Re: C Code

Please post your existing flowchart so we can see what you are trying and which controller you are using.
by kersing
Tue Jan 30, 2024 9:58 am
Forum: Bug Reports
Topic: Error when returning a string from a macro
Replies: 7
Views: 802

Re: Error when returning a string from a macro

Hi Brendan, Did you by any chance change the return type of the macro? If I recall correctly I had some issues when I did that recently. I had to recreate the macro with the correct type and copy the code to that new macro to resolve that. (Reloading the project and even restarting Flowcode didn’t s...
by kersing
Tue Jan 16, 2024 9:58 am
Forum: General
Topic: ESP-IdF V5.12 problem
Replies: 20
Views: 3871

Re: ESP-IdF V5.12 problem

There are known compatibility issues between Python 3.11 and 3.12, perhaps you can try 3.11?
by kersing
Sat Jan 13, 2024 9:57 pm
Forum: General
Topic: Hex To String
Replies: 2
Views: 688

Re: Hex To String

Create an empty sting of sufficient length, loop over the array and add the output of NumberToHex$ to the end with whatever needs to separate the hex numbers if there is another element in the array.
by kersing
Sat Dec 23, 2023 12:31 am
Forum: General
Topic: Can't get program to run
Replies: 10
Views: 1185

Re: Can't get program to run

You need to keep in mind Flowcode does not set your clock settings for you. The clock speed you provide is only used to calculate delays etc. To set the clock speed you need to add a C code block to your flowchart. Did you do so?
by kersing
Wed Dec 20, 2023 1:04 pm
Forum: User Components
Topic: LoRa component
Replies: 12
Views: 1876

Re: LoRa component

For TTN you need LoRaWAN, not just Lora. And you need to be in vicinity of a community gateway, if you’re not you need to deploy a LoRaWAN compliant gateway as well (think about 100 euros for an indoor one) For the embedded part you need a LoRaWAN component for Flowcode (which is being worked on) an...
by kersing
Wed Dec 20, 2023 11:55 am
Forum: User Components
Topic: LoRa component
Replies: 12
Views: 1876

Re: LoRa component

It seems Heltec considers the HT-M00 a LoRaWAN gateway (it is not as it does not meet LoRaWAN specifications and will disrupt LoRaWAN networks). That means the Lora component will not be compatible because the data transmitted will not have the right headers, checksums and encryption applied. You co...