Google's GBoard software keyboard has a Morse code mode.
Here's what characters it currently supports:
.-→a-...→b-.-.→c-..→d
| # 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| #!/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)) |
| #!/usr/bin/env python | |
| """ | |
| BlinkTxt - Spike Snell - 2013 | |
| Modified from Morse_Gmail.py | |
| by m0xpd December 2012 | |
| """ | |
| # Import what we need | |
| import time, sys | |
| import RPi.GPIO as GPIO |