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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="refresh" content="30"> | |
| <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" /> | |
| <meta http-equiv="Pragma" content="no-cache" /> | |
| <meta http-equiv="Expires" content="0" /> | |
| <link href='https://fonts.googleapis.com/css?family=Stylish' rel='stylesheet'> |
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
| # New version for CircuitPython on a microcontroller - (c)2024 | |
| # Now packaged as a class, with single-character mode | |
| # based on | |
| # displayText.py | |
| # (c)2020 robcranfill@gmail.com | |
| # | |
| import board | |
| import time |
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
| #!/bin/bash | |
| ############################################################ | |
| # Sleep/Wakeup Fix For Gigabyte Motherboards | |
| # | |
| # ---------------------------------------------------------- | |
| # ATTENTION! | |
| # This script can be run in a single line from your shell! | |
| # Simply run the following in the Terminal: | |
| # |
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
| // Based on https://how2electronics.com/interfacing-anemometer-npn-pulse-output-with-arduino/ | |
| unsigned long DEBOUNCE_DELAY = 1000; // the debounce time; increase if the output flickers | |
| int PIN_INTERRUPT = 25; | |
| unsigned long lastDebounceTime_ = 0; // the last time the output pin was toggled | |
| int count_ = 0; | |
| int iter_ = 0; | |
OlderNewer