Skip to content

Latest commit

History

History
18 lines (11 loc) 路 328 Bytes

File metadata and controls

18 lines (11 loc) 路 328 Bytes

GRiSP Examples

Basic Example

application:start(grisp).

grisp_led:color(1, green).

grisp_led:color(2, red).

grisp_led:flash(1, blue).

Random = fun() -> {random:uniform(2) - 1, random:uniform(2) - 1, random:uniform(2) - 1} end.

grisp_led:pattern(1, [{50, Random}]).
grisp_led:pattern(2, [{50, Random}]).