Navigation Menu

Skip to content

Commit

Permalink
adding Gerber file with larger snapp-off connections for JLCPCB
Browse files Browse the repository at this point in the history
  • Loading branch information
spenceraxani committed Sep 12, 2021
1 parent af6ccbd commit fd0ac48
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Arduino/Naming/Naming.ino
Expand Up @@ -4,7 +4,7 @@ const int EEPROM_MAX_ADDR = 511;

// Set the name of your detector below and then upload the code to your detector.
// This will write the name in the EEPROM of the Arduino (permanent until overwritten).
String det_name = "Phil";
String det_name = "Leonardo";

boolean eeprom_is_addr_ok(int addr) {
return ((addr >= EEPROM_MIN_ADDR) && (addr <= EEPROM_MAX_ADDR));
Expand Down
3 changes: 1 addition & 2 deletions Arduino/OLED/OLED.ino
Expand Up @@ -24,7 +24,7 @@
const byte OLED = 1; // Turn on/off the OLED [1,0]

const int SIGNAL_THRESHOLD = 50; // Min threshold to trigger on. See calibration.pdf for conversion to mV.
const int RESET_THRESHOLD = 15;
const int RESET_THRESHOLD = 25;

const int LED_BRIGHTNESS = 255; // Brightness of the LED [0,255]

Expand Down Expand Up @@ -295,4 +295,3 @@ boolean get_detector_name(char* det_name)
if ((ch != 0x00) && (bytesRead >= 1)) {det_name[bytesRead - 1] = 0;}
return true;
}

3 changes: 1 addition & 2 deletions Arduino/SDCard/SDCard.ino
Expand Up @@ -26,7 +26,7 @@ SdVolume volume;
File myFile;

const int SIGNAL_THRESHOLD = 50; // Min threshold to trigger on
const int RESET_THRESHOLD = 15;
const int RESET_THRESHOLD = 25;

const int LED_BRIGHTNESS = 255; // Brightness of the LED [0,255]

Expand Down Expand Up @@ -329,4 +329,3 @@ boolean get_detector_name(char* det_name)
if ((ch != 0x00) && (bytesRead >= 1)) {det_name[bytesRead - 1] = 0;}
return true;
}

Binary file not shown.

0 comments on commit fd0ac48

Please sign in to comment.