Created
June 5, 2012 21:14
-
-
Save ardumont/2878002 to your computer and use it in GitHub Desktop.
morse dsl in clojure
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
;; 0 represents short signal | |
;; 1 represents long signal | |
;; Intermational morse from http://en.wikipedia.org/wiki/Morse_code | |
(def letters-2-bits {\a [0 1] | |
\b [1 0 0 0] | |
\c [1 0 1 0] | |
\d [1 0 0] | |
\e [0] | |
\f [0 0 1 0] | |
\g [1 1 0] | |
\h [0 0 0 0] | |
\i [0 0] | |
\j [0 1 1 1] | |
\k [1 0 1] | |
\l [0 1 0 0] | |
\m [1 1] | |
\n [1 0] | |
\o [1 1 1] | |
\p [0 1 1 0] | |
\q [1 1 0 1] | |
\r [0 1 0] | |
\s [0 0 0] | |
\t [1] | |
\u [0 0 1] | |
\v [0 0 0 1] | |
\w [0 1 1] | |
\x [1 0 0 1] | |
\y [1 0 1 1] | |
\z [1 1 0 0]}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment