This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Customisable Vars | |
int led[6] = {3, 5, 6, 9, 10}; | |
int delaymicro = 75; | |
int delaymin = 25; | |
int delaymax = 500; | |
// Other Vars | |
int anaRead; | |
void setup() { | |
// put your setup code here, to run once: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SOMEONE POPED IN MY SPOT. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Processing Sketch | |
//Simple Game of Life | |
// Size of cells | |
int cellSize = 5; | |
// How likely for a cell to be alive at start (in percentage) | |
float probabilityOfAliveAtStart = 15; | |
// Variables for timer |