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
// Impulse NTP master clock for ESP32 + L298N (alternate polarity each pulse) | |
// Original by Wawa https://forum.arduino.cc/t/running-special-clock-with-motor-controller/1159828/106 | |
// Refactored by Ville Alatalo https://github.com/alatalo 08/2025 | |
// + minute-impulses | |
// + ENA for toggling coil | |
// + Finnish NTP + TZ | |
const char* WIFI_SSID = "Internet of Shit"; // WiFi SSID | |
const char* WIFI_PASS = ""; // WiFi password | |
const char* MY_TZ = "EET-2EEST,M3.5.0/3,M10.5.0/4"; // Helsinki, Finland |
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
#!/usr/bin/env pwsh | |
# Show the battery level of Logitech Arctis 7 headset in a | |
# small Powershell window. Uses HeadsetControl by Sapd <Denis Arnst>. | |
# | |
# Requirements: | |
# * Powershell and `Set-ExecutionPolicy RemoteSigned` | |
# * headsetcontrol.exe https://github.com/Sapd/HeadsetControl | |
# | |
# Note: For desktop icon, see attached headset_createDesktopIcon.ps1 |