Google's GBoard software keyboard has a Morse code mode.
Here's what characters it currently supports:
.-→a-...→b-.-.→c-..→d
| // .---------------------------------------------------------. | |
| // | Spike Snell - 2024 | | |
| // | A simple counter for a tm1637 display. | | |
| // | | | |
| // | - The count is reset after a long press of the button. | | |
| // `---------------------------------------------------------' | |
| // Import the tm1637Display library from - https://github.com/avishorp/TM1637 | |
| #include <TM1637Display.h> |
| # Pi Pico Firefly Simulator | |
| # By Spike Snell 2022 | |
| # Import what we need to run the onboard led | |
| import time, board, pwmio, random, microcontroller | |
| # Create a pseudorandom frequency | |
| freq = random.randint(2000,200000) | |
| # Set up the onboard led |
| # Circuit Python Script that Blinks the Current Temperature in Celsius in Morse Code | |
| # Modified July 2022 by Spike Snell from jay0lee's code below on github: | |
| # https://gist.github.com/jay0lee/e3cec7b2d126e3887c5c899635aeef90 | |
| # Import all that we need | |
| import board, digitalio, microcontroller, time | |
| # Define the length of a dot | |
| dot = 0.25 |
Google's GBoard software keyboard has a Morse code mode.
Here's what characters it currently supports:
.- → a-... → b-.-. → c-.. → d| #include "DigiKeyboard.h" | |
| // Define button pin | |
| const int buttonPin = 2; | |
| // Define button state | |
| int buttonState = 0; | |
| // Setup | |
| void setup() { |
| <title>Breathe</title> | |
| <style> | |
| @keyframes breathe { | |
| from { background-color: black; } | |
| to { background-color: red; } | |
| } | |
| body { |
| # Run the sleepy mushroom like a dodow sleep aid | |
| # Makes use of WS2812FX Web Interface by kitesurfer1404: | |
| # https://github.com/kitesurfer1404/WS2812FX | |
| # Set animation to fade | |
| curl http://192.168.0.128/set?m=15 | |
| # Set color to red | |
| curl http://192.168.0.128/set?c=16711680 |
| #!/bin/bash | |
| # Calculate approximate moon phase | |
| moonphase(){ | |
| local lp=2551443 | |
| local now=$(date -u +"%s") | |
| local newmoon=592500 | |
| local phase=$((($now - $newmoon) % $lp)) | |
| local phase_number=$((((phase / 86400) + 1)*100000)) |
| <html> | |
| <head> | |
| <title>Javascript Flasher Clock</title> | |
| <script> | |
| // Set up our colors array | |
| const colors = [ | |
| '#FFFFFF', |
| #!/bin/bash | |
| # Binary Bash Clock | |
| # Spike Snell - 2012 | |
| while true; | |
| do | |
| clear | |
| hour=$(date +%H) | |
| minute=$(date +%M) | |
| second=$(date +%S) | |
| hour_binary=$(echo "ibase=10;obase=2;$hour" | bc) |