-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
4,981 additions
and
190 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.vscode/ | ||
*.fcstd1 | ||
**/desktop.ini |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"url": "https://docs.google.com/open?id=1bJGVzlMOi4lhCe_lowgES_lc6zuVtLZEZH2xLKSR2NM", "doc_id": "1bJGVzlMOi4lhCe_lowgES_lc6zuVtLZEZH2xLKSR2NM", "email": "sebthomle@gmail.com"} | ||
{"":"WARNING! DO NOT EDIT THIS FILE! ANY CHANGES MADE WILL BE LOST!","doc_id":"1bJGVzlMOi4lhCe_lowgES_lc6zuVtLZEZH2xLKSR2NM","email":"sebthomle@gmail.com","resource_key":"","url":"https://docs.google.com/open?id=1bJGVzlMOi4lhCe_lowgES_lc6zuVtLZEZH2xLKSR2NM"} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
{"url": "https://docs.google.com/open?id=1oN_BuAAReJqHGiVTUNumqnsOz3ZYzIR79be_z8TzHBY", "doc_id": "1oN_BuAAReJqHGiVTUNumqnsOz3ZYzIR79be_z8TzHBY", "email": "sebthomle@gmail.com"} | ||
{ | ||
// WARNING! DO NOT EDIT THIS FILE! ANY CHANGES MADE WILL BE LOST! | ||
"doc_id" : "1oN_BuAAReJqHGiVTUNumqnsOz3ZYzIR79be_z8TzHBY", | ||
"email" : "sebthomle@gmail.com", | ||
"resource_key" : "", | ||
"url" : "https://docs.google.com/open?id=1oN_BuAAReJqHGiVTUNumqnsOz3ZYzIR79be_z8TzHBY" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
//We always have to include the library | ||
#include "LedControl.h" | ||
|
||
/* | ||
Now we need a LedControl to work with. | ||
***** These pin numbers will probably not work with your hardware ***** | ||
pin 12 is connected to the DataIn | ||
pin 11 is connected to the CLK | ||
pin 10 is connected to LOAD | ||
We have only a single MAX72XX. | ||
*/ | ||
LedControl lc=LedControl(14,16,15,4); | ||
|
||
/* we always wait a bit between updates of the display */ | ||
unsigned long delaytime=100; | ||
|
||
void setup() { | ||
|
||
Serial.begin(9600); | ||
/* | ||
The MAX72XX is in power-saving mode on startup, | ||
we have to do a wakeup call | ||
*/ | ||
lc.shutdown(0,false); | ||
/* Set the brightness to a medium values */ | ||
lc.setIntensity(0,8); | ||
/* and clear the display */ | ||
lc.clearDisplay(0); | ||
} | ||
|
||
/* | ||
This function will light up every Led on the matrix. | ||
*/ | ||
void single() { | ||
for(int row=0;row<8;row++) { | ||
for(int col=0;col<8;col++) { | ||
delay(delaytime); | ||
lc.setLed(0,row,col,true); | ||
Serial.print(row); | ||
Serial.print("\t"); | ||
Serial.println(col); | ||
delay(delaytime); | ||
} | ||
} | ||
} | ||
|
||
void loop() { | ||
single(); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
//We always have to include the library | ||
#include "LedControl.h" | ||
|
||
|
||
|
||
int numOfBoards = 3; | ||
/* | ||
Now we need a LedControl to work with. | ||
***** These pin numbers will probably not work with your hardware ***** | ||
pin 12 is connected to the DataIn | ||
pin 11 is connected to the CLK | ||
pin 10 is connected to LOAD | ||
We have only a single MAX72XX. | ||
*/ | ||
LedControl lc=LedControl(14,16,15,numOfBoards); | ||
|
||
/* we always wait a bit between updates of the display */ | ||
unsigned long delaytime=100/numOfBoards; | ||
|
||
|
||
void single(bool mode); | ||
|
||
void setup() { | ||
|
||
Serial.begin(9600); | ||
|
||
|
||
for (int i = 0; i < numOfBoards; i++){ | ||
/* | ||
The MAX72XX is in power-saving mode on startup, | ||
we have to do a wakeup call | ||
*/ | ||
lc.shutdown(i,false); | ||
/* Set the brightness to a medium values */ | ||
lc.setIntensity(i,8); | ||
/* and clear the display */ | ||
lc.clearDisplay(i); | ||
} | ||
|
||
Serial.print("board"); | ||
Serial.print("\t"); | ||
Serial.print("row"); | ||
Serial.print("\t"); | ||
Serial.println("col"); | ||
} | ||
|
||
/* | ||
This function will light up every Led on the matrix. | ||
*/ | ||
void single(bool mode) { | ||
for(int board=0;board<numOfBoards;board++){ | ||
for(int row=0;row<8;row++) { | ||
for(int col=0;col<8;col++) { | ||
delay(delaytime); | ||
lc.setLed(board,row,col,mode); | ||
Serial.print(board); | ||
Serial.print("\t"); | ||
Serial.print(row); | ||
Serial.print("\t"); | ||
Serial.println(col); | ||
delay(delaytime); | ||
} | ||
} | ||
} | ||
} | ||
|
||
void loop() { | ||
lc.setLed(0,0,0,true); | ||
delay(500); | ||
lc.setLed(0,0,0,false); | ||
delay(500); | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title>A2P assembly hierarchy visualization</title> | ||
</head> | ||
<body> | ||
<div class="mermaid"> | ||
graph TD | ||
UR_Body_001(UR_Body_001<br>*FIXED*) -- plane --> UR_Glass_001 | ||
UR_Body_001(UR_Body_001<br>*FIXED*) -- axial --> UR_Glass_001 | ||
UR_Body_001(UR_Body_001<br>*FIXED*) -- axial --> UR_Glass_001 | ||
UR_Glass_001 | ||
</div> | ||
<script src="https://unpkg.com/mermaid@7.1.2/dist/mermaid.js"></script> | ||
<script> | ||
mermaid.initialize({startOnLoad: true}); | ||
</script> | ||
</body></html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Binary file removed
BIN
-8 Bytes
wordclock-master/firmware/pijuanaclock/.vscode/ipch/1bbbc90a44e8fab6/mmap_address.bin
Binary file not shown.
Binary file removed
BIN
-8 Bytes
wordclock-master/firmware/pijuanaclock/.vscode/ipch/8d986cb0a4ce76eb/mmap_address.bin
Binary file not shown.
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
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
Oops, something went wrong.