This file contains hidden or 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
| /*********************************************************************** | |
| GARAGE PARKING SENSOR | |
| ************************************************************************/ | |
| #include <Adafruit_NeoPixel.h> | |
| #define LED_PIN 0 | |
| #define LED_COUNT 7 | |
| #define LED_BRIGHTNESS 30 |
This file contains hidden or 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
| // sae | |
| //socketDiameters = [ 17.121, 17.121, 17.121, 18.263, 20.216, 22.254, 24.398, 26.392, 28.469, 30.591]; | |
| //socketLabels = [ | |
| //"\u2075/\u2081\u2086", // 5/16 | |
| //"\u00b3/\u2088", // 3/8 | |
| //"\u2077/\u2081\u2086", // 7/16 | |
| //"\u00b9/\u2082", // 1/2 | |
| //"\u2079/\u2081\u2086", // 9/16 | |
| //"\u2075/\u2088", // 5/8 | |
| //"\u00B9\u00B9/\u2081\u2086", // 11/16 |
This file contains hidden or 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
| # set the Windows Update service to "disabled" | |
| sc.exe config wuauserv start=disabled | |
| # display the status of the service | |
| sc.exe query wuauserv | |
| # stop the service, in case it is running | |
| sc.exe stop wuauserv | |
| # display the status again, because we're paranoid |