Announcing Flowcode v8

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 8.

Moderator: Benj

Locked
User avatar
Steve
Matrix Staff
Posts: 3418
Joined: Tue Jan 03, 2006 3:59 pm
Has thanked: 114 times
Been thanked: 422 times
Contact:

Announcing Flowcode v8

Post by Steve »

Some of you might have noticed the countdown on our homepage announcing next week's arrival of Flowcode v8. Over the next few days we will use this thread to reveal a few of its new features prior to release.

To begin with, I want to introduce a couple of relatively small new features that we hope will appeal to existing users who create large and complex programs:

Icon Grouping allows sections of flowchart to be grouped together into a single icon, which improves the readability of a flowchart and reduce its overall size on screen. These icon groups can be moved, copied and pasted like any other flowchart icon, allowing you to manage sections of commonly-used code. Simply ungroup the icons again to reveal the group's contents.

Code Folding is a similar feature which improves flowcode's readability. Clicking the '-' symbol will temporarily 'collapse' or 'roll-up' the icons within the branches of decision, switch and loop icons, making the flowchart less cluttered and easier to read. When you want to look at the code within a branch, simply click the '+' symbol to expand it.

More new features will be announced over the coming days...
icon groups.png
(14.28 KiB) Downloaded 11634 times
code folding.png
(13.78 KiB) Downloaded 11634 times

User avatar
Steve
Matrix Staff
Posts: 3418
Joined: Tue Jan 03, 2006 3:59 pm
Has thanked: 114 times
Been thanked: 422 times
Contact:

Re: Announcing Flowcode v8

Post by Steve »

Flowcode v8 introduces two new programming modes to supplement the existing Flowchart and C-code modes.

One of these is a visual mode we call “Blocks”, where the icons are shaped so they fit together like a jigsaw as show in the images below. Anyone familiar with Scratch, App Inventor, or other visual languages that are based on Blockly will understand the new Blocks mode in Flowcode, which has become a popular way of programming over recent years, especially to those learning programming for the first time. Flowcode programs can be displayed in either Flowchart or Blocks mode and changes made in one mode will automatically be displayed in the other, so users will have the choice of which programming ‘language’ they use to create their programs.
blocks3.png
(25.11 KiB) Downloaded 11594 times
fc8-ss-new-blockly2.jpg
fc8-ss-new-blockly2.jpg (36.5 KiB) Viewed 28871 times
Another new programming mode in Flowcode is called “Pseudocode”. This is a textual language where the programming icons of the flowchart are instead represented by natural English-like language statements. Like the Blocks mode, this new mode will suit new users of Flowcode who are relatively new to programming and have some experience of using pseudocode to describe their programs.
pseudo1.png
(25.78 KiB) Downloaded 11594 times

User avatar
Steve
Matrix Staff
Posts: 3418
Joined: Tue Jan 03, 2006 3:59 pm
Has thanked: 114 times
Been thanked: 422 times
Contact:

Re: Announcing Flowcode v8

Post by Steve »

Perhaps the most important new features in Flowcode v8 are three concerning C code.

One aspect of this is that a user's own C code can now be entered directly within the "C code" window. This either inserts new C-code commands between existing statements (or flowchart icons) or customises the C code of an existing flowchart icon.

As well as improving the C-editing features within Flowcode, we now allow most C statements and constructs to be simulated. Whereas previous versions of Flowcode ignored any C code within a user's program during simulation, Flowcode v8 temporarily converts the code to a form which can be simulated. A few more-complex features of the C language are not simulatable, but the majority of the language is.
conv_c.png
(19.43 KiB) Downloaded 11547 times
Finally, as well as allowing C code to simulate, Flowcode v8 has the additional feature of allowing the conversion of C code to the equivalent flowchart icons (or blocks icons and pseudocode).
c-code-sim.jpg
c-code-sim.jpg (20.5 KiB) Viewed 28824 times
Taken together, these C-code improvements have significant benefits for practising professional engineers as well as those students learning C-code programming.

User avatar
Steve
Matrix Staff
Posts: 3418
Joined: Tue Jan 03, 2006 3:59 pm
Has thanked: 114 times
Been thanked: 422 times
Contact:

Re: Announcing Flowcode v8

Post by Steve »

Flowcode v8 now allows users to target Raspberry Pi boards, giving intuitive access to the i/o pins and hardware features such as PWM, I2C and UART. Flowcode programs can be run immediately via Flowcode on a PC, and multiple Flowcode programs can be set to run on startup or on some other condition.

Alongside this, our E-blocks2 hardware platform also supports the Raspberry Pi and the Raspberry Pi Shield is perfect for those who wish to integrate their Pi into the E-blocks system. This shield also enables the Ghost features (ICT and ICD) of Flowcode, allowing debugging and monitoring capabilities.

Our latest blog post contains a video explaining these new features, and more information will be available on our website very soon:

https://www.matrixtsl.com/blog/flowcode ... announced/

Locked