Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
30fd2bb8
Kaydet (Commit)
30fd2bb8
authored
Eki 11, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update morse script, avoid globals, use iterators.
üst
27468663
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
44 deletions
+33
-44
morse.py
Demo/scripts/morse.py
+33
-44
No files found.
Demo/scripts/morse.py
Dosyayı görüntüle @
30fd2bb8
#! /usr/bin/env python
# DAH should be three DOTs.
# DAH should be three DOTs.
# Space between DOTs and DAHs should be one DOT.
# Space between DOTs and DAHs should be one DOT.
# Space between two letters should be one DAH.
# Space between two letters should be one DAH.
...
@@ -36,53 +38,44 @@ morsetab = {
...
@@ -36,53 +38,44 @@ morsetab = {
'X'
:
'-..-'
,
'x'
:
'-..-'
,
'X'
:
'-..-'
,
'x'
:
'-..-'
,
'Y'
:
'-.--'
,
'y'
:
'-.--'
,
'Y'
:
'-.--'
,
'y'
:
'-.--'
,
'Z'
:
'--..'
,
'z'
:
'--..'
,
'Z'
:
'--..'
,
'z'
:
'--..'
,
'0'
:
'-----'
,
'0'
:
'-----'
,
','
:
'--..--'
,
'1'
:
'.----'
,
'1'
:
'.----'
,
'.'
:
'.-.-.-'
,
'2'
:
'..---'
,
'2'
:
'..---'
,
'?'
:
'..--..'
,
'3'
:
'...--'
,
'3'
:
'...--'
,
';'
:
'-.-.-.'
,
'4'
:
'....-'
,
'4'
:
'....-'
,
':'
:
'---...'
,
'5'
:
'.....'
,
'5'
:
'.....'
,
"'"
:
'.----.'
,
'6'
:
'-....'
,
'6'
:
'-....'
,
'-'
:
'-....-'
,
'7'
:
'--...'
,
'7'
:
'--...'
,
'/'
:
'-..-.'
,
'8'
:
'---..'
,
'8'
:
'---..'
,
'('
:
'-.--.-'
,
'9'
:
'----.'
,
'9'
:
'----.'
,
')'
:
'-.--.-'
,
','
:
'--..--'
,
' '
:
' '
,
'_'
:
'..--.-'
,
'.'
:
'.-.-.-'
,
'?'
:
'..--..'
,
';'
:
'-.-.-.'
,
':'
:
'---...'
,
"'"
:
'.----.'
,
'-'
:
'-....-'
,
'/'
:
'-..-.'
,
'('
:
'-.--.-'
,
')'
:
'-.--.-'
,
'_'
:
'..--.-'
,
' '
:
' '
}
}
nowave
=
'
\0
'
*
200
# If we play at 44.1 kHz (which we do), then if we produce one sine
# If we play at 44.1 kHz (which we do), then if we produce one sine
# wave in 100 samples, we get a tone of 441 Hz. If we produce two
# wave in 100 samples, we get a tone of 441 Hz. If we produce two
# sine waves in these 100 samples, we get a tone of 882 Hz. 882 Hz
# sine waves in these 100 samples, we get a tone of 882 Hz. 882 Hz
# appears to be a nice one for playing morse code.
# appears to be a nice one for playing morse code.
def
mkwave
(
octave
):
def
mkwave
(
octave
):
global
sinewave
,
nowave
sinewave
=
''
sinewave
=
''
for
i
in
range
(
100
):
for
i
in
range
(
100
):
val
=
int
(
math
.
sin
(
math
.
pi
*
float
(
i
)
*
octave
/
50.0
)
*
30000
)
val
=
int
(
math
.
sin
(
math
.
pi
*
i
*
octave
/
50.0
)
*
30000
)
sinewave
=
sinewave
+
chr
((
val
>>
8
)
&
255
)
+
chr
(
val
&
255
)
sinewave
=
sinewave
+
chr
((
val
>>
8
)
&
255
)
+
chr
(
val
&
255
)
nowave
=
'
\0
'
*
200
return
sinewave
mkwave
(
OCTAVE
)
defaultwave
=
mkwave
(
OCTAVE
)
def
main
():
def
main
():
import
getopt
,
string
import
getopt
try
:
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'o:p:'
)
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
'o:p:'
)
except
getopt
.
error
:
except
getopt
.
error
:
sys
.
stderr
.
write
(
'Usage '
+
sys
.
argv
[
0
]
+
sys
.
stderr
.
write
(
'Usage '
+
sys
.
argv
[
0
]
+
' [ -o outfile ] [
arg
s ] ...
\n
'
)
' [ -o outfile ] [
-p octave ] [ word
s ] ...
\n
'
)
sys
.
exit
(
1
)
sys
.
exit
(
1
)
dev
=
None
dev
=
None
wave
=
defaultwave
for
o
,
a
in
opts
:
for
o
,
a
in
opts
:
if
o
==
'-o'
:
if
o
==
'-o'
:
import
aifc
import
aifc
...
@@ -91,7 +84,7 @@ def main():
...
@@ -91,7 +84,7 @@ def main():
dev
.
setsampwidth
(
2
)
dev
.
setsampwidth
(
2
)
dev
.
setnchannels
(
1
)
dev
.
setnchannels
(
1
)
if
o
==
'-p'
:
if
o
==
'-p'
:
mkwave
(
string
.
atoi
(
a
))
wave
=
mkwave
(
int
(
a
))
if
not
dev
:
if
not
dev
:
import
audiodev
import
audiodev
dev
=
audiodev
.
AudioDev
()
dev
=
audiodev
.
AudioDev
()
...
@@ -101,18 +94,14 @@ def main():
...
@@ -101,18 +94,14 @@ def main():
dev
.
close
=
dev
.
stop
dev
.
close
=
dev
.
stop
dev
.
writeframesraw
=
dev
.
writeframes
dev
.
writeframesraw
=
dev
.
writeframes
if
args
:
if
args
:
line
=
string
.
join
(
args
)
source
=
[
' '
.
join
(
args
)]
else
:
else
:
line
=
sys
.
stdin
.
readline
(
)
source
=
iter
(
sys
.
stdin
.
readline
,
''
)
while
lin
e
:
for
line
in
sourc
e
:
mline
=
morse
(
line
)
mline
=
morse
(
line
)
play
(
mline
,
dev
)
play
(
mline
,
dev
,
wave
)
if
hasattr
(
dev
,
'wait'
):
if
hasattr
(
dev
,
'wait'
):
dev
.
wait
()
dev
.
wait
()
if
not
args
:
line
=
sys
.
stdin
.
readline
()
else
:
line
=
''
dev
.
close
()
dev
.
close
()
# Convert a string to morse code with \001 between the characters in
# Convert a string to morse code with \001 between the characters in
...
@@ -121,29 +110,29 @@ def morse(line):
...
@@ -121,29 +110,29 @@ def morse(line):
res
=
''
res
=
''
for
c
in
line
:
for
c
in
line
:
try
:
try
:
res
=
res
+
morsetab
[
c
]
+
'
\001
'
res
+=
morsetab
[
c
]
+
'
\001
'
except
KeyError
:
except
KeyError
:
pass
pass
return
res
return
res
# Play a line of morse code.
# Play a line of morse code.
def
play
(
line
,
dev
):
def
play
(
line
,
dev
,
wave
):
for
c
in
line
:
for
c
in
line
:
if
c
==
'.'
:
if
c
==
'.'
:
sine
(
dev
,
DOT
)
sine
(
dev
,
DOT
,
wave
)
elif
c
==
'-'
:
elif
c
==
'-'
:
sine
(
dev
,
DAH
)
sine
(
dev
,
DAH
,
wave
)
else
:
# space
else
:
# space
pause
(
dev
,
DAH
+
DOT
)
pause
(
dev
,
DAH
+
DOT
)
pause
(
dev
,
DOT
)
pause
(
dev
,
DOT
)
def
sine
(
dev
,
length
):
def
sine
(
dev
,
length
,
wave
):
for
i
in
range
(
length
):
for
i
in
range
(
length
):
dev
.
writeframesraw
(
sine
wave
)
dev
.
writeframesraw
(
wave
)
def
pause
(
dev
,
length
):
def
pause
(
dev
,
length
):
for
i
in
range
(
length
):
for
i
in
range
(
length
):
dev
.
writeframesraw
(
nowave
)
dev
.
writeframesraw
(
nowave
)
if
__name__
==
'__main__'
or
sys
.
argv
[
0
]
==
__name__
:
if
__name__
==
'__main__'
:
main
()
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment