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
| const int bluePins[4] = {3, 2, 1, 0}; | |
| const int greenPins[6] = {9, 8, 7, 6, 5, 4}; | |
| const int redPins[6] = {13, 12, 11, 10, A1, A2}; | |
| const int btnStartPause = A0; | |
| const int btnReset = A5; | |
| const int btnLapView = A3; | |
| const int btnClear = A4; | |
| unsigned long startTime = 0; | |
| unsigned long elapsedTime = 0; |
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
| TypeScript..... 16m 42s ........................44.2% | |
| YAML........... 13m 6s .........................34.7% | |
| JSON........... 4m 30s .........................11.9% | |
| CSS............ 3m 28s ..........................9.2% | |
| Other.......... 1s ..............................0.1% |
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
| “Do the thing you fear most and the death of fear is | |
| certain.” | |
| — Mark Twain | |
| Updated 12 Jun 2026, 04:51:30 GMT+8 |
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
| /* 1. Timer */ | |
| function padZero (n) { | |
| if (n < 10) return '0' + n; | |
| else return n.toString() | |
| } | |
| t = Math.floor(Math.max((time - inPoint), 0)); | |
| min = Math.floor((t % 3600) / 60); | |
| sec = padZero(Math.floor(t % 60)); | |
| `${min}:${sec}` |
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
| Softwares Download Link for Windows | |
| - | |
| Collected by rnmeow, licensed under CC-BY. | |
| https://creativecommons.org/licenses/by/3.0/tw | |
| - | |
| 7-Zip: https://www.7-zip.org | |
| ("I RECOMMEND" WinRAR: https://www.win-rar.com/download.html) | |
| ADB and Fastboot++: https://github.com/K3V1991/ADB-and-FastbootPlusPlus | |
| Android Studio: https://developer.android.com/studio | |
| CDBurnerXP: https://cdburnerxp.se/zh-cht/home |