Search found 1713 matches

by BenR
Fri Dec 18, 2020 10:06 am
Forum: Feature Requests
Topic: ESP 8266 ON FLOWCODE 9 ?
Replies: 3
Views: 2870

Re: ESP 8266 ON FLOWCODE 9 ?

Hello,

You can use the ESP8266 as a slave to a microcontroller but we don't currently support the ESP8266 as a target microcontroller, just the ESP32 at the moment.
by BenR
Thu Dec 17, 2020 4:34 pm
Forum: Feature Requests
Topic: Font!
Replies: 21
Views: 12462

Re: Font!

Hi Jorgen, Which display are you using and I'll have a go, it probably will be a new macro something like SetFontScaler to avoid breaking existing code. I might be able to make it a floating point value rather then integer but this might look messy and would certainly add more code. anyway I'll have...
by BenR
Thu Dec 17, 2020 3:04 pm
Forum: Feature Requests
Topic: Font!
Replies: 21
Views: 12462

Re: Font!

Hello, The old fonts in v8 probably used to go bigger then 24 pixels. I can have a go at adding a very large pixel font for you but it will likely take up a fair amount of ROM to store. What sort of pixel height are you looking for? In v8 size 31 would give you a 6x6 scaling factor so 5 x 8 would be...
by BenR
Thu Dec 17, 2020 3:01 pm
Forum: Bug Reports
Topic: Running existing FC8 in FC9
Replies: 9
Views: 5065

Re: Running existing FC8 in FC9

Hi David,

In the IOC interrupt enable icon it looks like all pins are enabled? Is this correct?
by BenR
Thu Dec 17, 2020 11:52 am
Forum: Feature Requests
Topic: ILI9163C China model 1.44 " spi 128 x 128 display
Replies: 2
Views: 2472

Re: ILI9163C China model 1.44 " spi 128 x 128 display

Hello,

Is it just that the display your using required a shift so 0,0 on the coords is not 0,0 on the display? We can potentially add new shift properties to allow you to set the amount of shift in the component. I have done this already for other displays.
by BenR
Thu Dec 17, 2020 10:34 am
Forum: Bug Reports
Topic: Attiny85 ili9163 bug
Replies: 1
Views: 1728

Re: Attiny85 ili9163 bug

Hello,

Please can you attach your program and maybe a photo of the display output vs the simulated output so we can see the difference.
by BenR
Thu Dec 17, 2020 10:33 am
Forum: Bug Reports
Topic: Problem / bug with display font.
Replies: 1
Views: 1692

Re: Problem / bug with display font.

Hello,

Please see the reply here.
viewtopic.php?f=4&t=45
by BenR
Thu Dec 17, 2020 10:32 am
Forum: Feature Requests
Topic: Display with new command for Arduino or similar micro.
Replies: 4
Views: 3412

Re: Display with new command for Arduino or similar micro.

Hello,

Flowcode v9 now uses a similar GLCD font system to Arduino. You can set the font colour by calling the SetForegroundColour component macro. The font and size is adjustable from the component properties.

This video may help.
https://www.youtube.com/watch?v=HN8EI64ADic&t=1s
by BenR
Thu Dec 17, 2020 10:27 am
Forum: Bug Reports
Topic: Running existing FC8 in FC9
Replies: 9
Views: 5065

Re: Running existing FC8 in FC9

Hi David, We have changed the way string concatenations work so you can now do things like string = "a" + "b" + "c" + "d" all on one line. Please can you send me your project file so we can investigate the problem for you, looks like it could be a corner case bug in the new system. For reference her...
by BenR
Thu Dec 17, 2020 10:11 am
Forum: Feature Requests
Topic: Font!
Replies: 21
Views: 12462

Re: Font!

Hi Jorgen,

Have you seen this video? It might help to explain things in v9.
https://www.youtube.com/watch?v=HN8EI64ADic&t=1s

Let me know your thoughts.