Skip to content

Commit aafe7b4

Browse files
authored
Merge pull request #25 from microflo/icons
Add icons to some of the components
2 parents a2a3115 + 9f6139b commit aafe7b4

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

components/Count.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: Count
33
description: "Count upwards from 0, with step 1"
4+
icon: "sort-numeric-asc"
45
inports:
56
in:
67
type: bang

components/Forward.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: Forward
33
description: Forward a packet from input to output
4+
icon: "forward"
45
inports:
56
in:
67
type: all

components/ForwardIf.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: ForwardIf
33
description: "Forward a packet only if it contains a Boolean 'true' value."
4+
icon: "forward"
45
inports:
56
in:
67
type: all

components/HoldPacket.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: HoldPacket
33
description: Hold and send latest packet
4+
icon: "mail-forward"
45
inports:
56
data:
67
type: all

components/Route.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: Route
33
description: "Pass packets to @out from input port number @port"
4+
icon: "code-fork"
45
inports:
56
port:
67
type: integer

components/RunningMedian.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ static void rm_insertion_sort(int arr[], int length) {
2121
/* microflo_component yaml
2222
name: RunningMedian
2323
description: Calculate a running median of latest values
24+
icon: "bar-chart"
2425
inports:
2526
in:
2627
type: integer

components/Split.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: Split
33
description: Emit incoming packets on all output ports
4+
icon: "expand"
45
inports:
56
in:
67
type: all

components/Timer.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: Timer
33
description: "Emit a packet every @interval milliseconds"
4+
icon: "clock-o"
45
inports:
56
interval:
67
type: integer

components/ToggleBoolean.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* microflo_component yaml
22
name: ToggleBoolean
33
description: Invert output packet everytime an input packet arrives. First output will be false
4+
icon: "check-square-o"
45
inports:
56
in:
67
type: bang

0 commit comments

Comments
 (0)