FEZtive Module Driver?

Is there a driver available somewhere for the FEZtive module?

I do have some code that I can use to run it in plain NETMF mode, but wondered whether there was Gadgeteer code available for it.

We have one finished now, we are just doing some testing first.

Check out http://wiki.tinyclr.com/index.php?title=FEZtive_Module and let us know what you think. Code and a full Gadgeteer driver project are available.

Thanks!

Looks like a good start. I haven’t had a chance to solder up my strips yet, but I’ll give the code a run either later this week, or early next week, after I start my Christmas vacation.

If I do a 5x5 array, do the LED numbers zigzag, or do they go in order? That is, is the arrangement this:

1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25

Or this:

1 2 3 4 5
10 9 8 7 6
11 12 13 14 15
20 19 18 17 16
21 22 23 24 25

Looking forward to the forthcoming wiki section on chaining the modules.

Another nice-to-have would be either tips on the wiki, or code in the driver for doing patterns (snowflakes, etc.)

The array will be displayed almost like you said in your second example.

The pattern will start from the S socket, so if the module’s socket is on the left, the pattern will be:

21 22 23 24 25
20 19 18 17 16
11 12 13 14 15
10 9 8 7 6
1 2 3 4 5

And if the socket is placed on the right, the pattern will be:

5 4 3 2 1
6 7 8 9 10
15 14 13 12 11
16 17 18 19 20
25 24 23 22 21

@ Steven - Thanks. Zigzag it is! :slight_smile: