ボタンを押してスピーカーから音を鳴らす

Dependencies:   mbed

Revision:
1:27e47a17243e
Parent:
0:bc2ad5b63ea7
Child:
2:8fb2cbbe8c0f
--- a/main.cpp	Sat Aug 15 08:18:47 2015 +0000
+++ b/main.cpp	Sat Aug 15 09:26:30 2015 +0000
@@ -1,5 +1,5 @@
 //example_02_button
-//スピーカーを鳴らすサンプルコード
+//ボタンを押すとスピーカーを鳴らすサンプルコード
 #include "mbed.h"
 
 #define SP_OFF 0.0
@@ -12,9 +12,10 @@
 
 int main()
 {
+    button.mode(PullUp); 
     while(true) {
         //もしButtonが押されていたら
-        if(button == true) {
+        if(button == 0) {
             //音を鳴らす
             speaker.period(1.0/mC);
             speaker.write(SP_ON);