Hey List
I want to be able to create some euclidean patterns for a mutable instruments hardware eurorack module
i need to know how to generate a list that looks like this
const prog_uint8_t node_0[] PROGMEM = { | |
255, 0, 0, 0, 0, 0, 145, 0, | |
0, 0, 0, 0, 218, 0, 0, 0, | |
72, 0, 36, 0, 182, 0, 0, 0, | |
109, 0, 0, 0, 72, 0, 0, 0, | |
36, 0, 109, 0, 0, 0, 8, 0, | |
255, 0, 0, 0, 0, 0, 72, 0, | |
0, 0, 182, 0, 0, 0, 36, 0, | |
218, 0, 0, 0, 145, 0, 0, 0, | |
170, 0, 113, 0, 255, 0, 56, 0, | |
170, 0, 141, 0, 198, 0, 56, 0, | |
170, 0, 113, 0, 226, 0, 28, 0, | |
170, 0, 113, 0, 198, 0, 85, 0, | |
}; |
so it's an 8X12 matrix of values between 0 and 255
is there a simple way in pure data that i can create such an animal?