Search found 146 matches

by kersing
Tue Apr 02, 2024 4:23 pm
Forum: General
Topic: SK6812 LED
Replies: 37
Views: 4130

Re: SK6812 LED

It helps when you upload the flowchart you’re having issues with because it takes away a lot of guesswork. (Uploads are available in the full editor & preview mode you can open with the button below the text box)
by kersing
Mon Apr 01, 2024 8:44 pm
Forum: General
Topic: Compra de Flowcode
Replies: 24
Views: 1951

Re: Compra de Flowcode

To see the cost you go to flowcode.co.uk website and look at the top for “Buy Flowcode”. Click there. Payment options will be listed.
by kersing
Sat Mar 30, 2024 8:32 am
Forum: Bug Reports
Topic: HC05 Bluetooth: send command and set pair key macro problem!!!
Replies: 2
Views: 430

Re: HC05 Bluetooth: send command and set pair key macro problem!

If you need to send quotes within a string you can use a backslash to escape it,

So your correct command translates to “AT+PSWD=\”6789\”” in the expression box.
by kersing
Tue Mar 26, 2024 5:45 pm
Forum: General
Topic: "ATS-5S18F46K22.c:37:45: error: (1504) the PIC18 extended instruction set was enabled but is not supported by this compi
Replies: 2
Views: 1138

Re: "ATS-5S18F46K22.c:37:45: error: (1504) the PIC18 extended instruction set was enabled but is not supported by this c

This error is not license related. Check the chip settings in your flowchart and disable the extended instruction set.
by kersing
Thu Mar 21, 2024 10:33 pm
Forum: General
Topic: Programs cannot be loaded to some clone Arduino nanos
Replies: 6
Views: 1428

Re: Programs cannot be loaded to some clone Arduino nanos

Please don’t post hard to read pictures. In there should be a .msg file in the same folder your flowchart is stored that contains the messages. Please either attach that or include it in a [ code ] - [ /code ] block. (Skip the spaces after/before the brackets)
by kersing
Thu Mar 21, 2024 9:48 pm
Forum: Bug Reports
Topic: Lookup table resizing.
Replies: 4
Views: 1103

Re: Lookup table resizing.

An 8 bit lookup table with >256 values?? Does that make sense?
by kersing
Thu Mar 21, 2024 9:46 pm
Forum: General
Topic: GPS
Replies: 11
Views: 1211

Re: GPS

Have you tested this hardware setup with the same software you used before?
by kersing
Sat Mar 16, 2024 11:57 am
Forum: Bug Reports
Topic: GLCD (SSD1306) I2C
Replies: 6
Views: 872

Re: GLCD (SSD1306) I2C

Have you done a full update of the components? There have been fixes made regarding the properties a little while ago.
by kersing
Fri Mar 15, 2024 9:37 am
Forum: Feature Requests
Topic: Ternary operator in calculation block?
Replies: 7
Views: 751

Re: Ternary operator in calculation block?

Any halfway decent compiler should optimize the expression, BTW, you probably don’t want to include a space between the exclamation mark and the equal sign as it should throw a syntax error. The correct syntax is if ( .x != 0 ) And in flowcode you can use <> which is easier on the eyes for novice pr...
by kersing
Fri Mar 15, 2024 9:11 am
Forum: Feature Requests
Topic: Ternary operator in calculation block?
Replies: 7
Views: 751

Re: Ternary operator in calculation block?

Thanks for the hint, however strictly speaking false is zero and true might be any value not zero, so this working depends compiler/controller (and a bit of luck?)