This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuzzerjingle.sb
75 lines (62 loc) · 1.58 KB
/
buzzerjingle.sb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (c) 2013, Laird
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
// IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
//
// SPDX-License-Identifier:ISC
//
// Author & Conductor: Mark Duncombe
//
//******************************************************************************
dim rc
dim n
dim scale[7]
dim text$[7]
scale[0] = 262 // Do
scale[1] = 294 // Re
scale[2] = 330 // Mi
scale[3] = 349 // Fa
scale[4] = 392 // So
scale[5] = 440 // La
scale[6] = 494 // Si
text$[0] = "Do"
text$[1] = "Re"
text$[2] = "Mi"
text$[3] = "Fa"
text$[4] = "So"
text$[5] = "La"
text$[6] = "Si"
rc=GpioSetFunc(15,2,3) //Configure the SIO for the buzzer
sub sound()
GpioWrite(15,scale[n])
endsub
sub quit()
timercancel(0)
GpioWrite(15,0)
endsub
TIMERSTART(0,500,1)
n=0
sound()
Print text$[n];"\n"
FUNCTION handlerTimer0()
n=n+1
if n>6 then
quit()
Print "\nExiting app"
EXITFUNC 0
else
sound()
Print text$[n];"\n"
endif
ENDFUNC 1
ONEVENT EVTMR0 CALL handlerTimer0
WAITEVENT