obniz developer team
Published

Make a virtual piano with a speaker

When you press a key displayed in HTML, the speaker will play the appropriate scale.

BeginnerFull instructions provided1 hour226
Make a virtual piano with a speaker

Things used in this project

Hardware components

obniz
Cambrian Robotics obniz
×1
Adafruit speaker
×1

Story

Read more

Code

Untitled file

HTML
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link
      rel="stylesheet"
      href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
    />
    <link rel="stylesheet" href="./stylesheet.css" />
    <script src="https://obniz.io/js/jquery-3.2.1.min.js"></script>
    <script
      src="https://unpkg.com/obniz@3.x/obniz.js"
      crossorigin="anonymous"
    ></script>
  </head>
  <body>
    <div id="obniz-debug"></div>
    <div id="main">
      <h1 id="title">Let's play piano!</h1>
      <div id="keyboard" ontouchstart="">
        <div class="white"></div>
        <div class="black"></div>
        <div class="white"></div>
        <div class="black"></div>
        <div class="white"></div>
        <div class="white"></div>
        <div class="black"></div>
        <div class="white"></div>
        <div class="black"></div>
        <div class="white"></div>
        <div class="black"></div>
        <div class="white"></div>
      </div>
    </div>
    <script>
      const obniz = new Obniz("OBNIZ_ID_HERE");
      let frequency = [
        523.251,
        554.365,
        587.33,
        622.254,
        659.255,
        698.456,
        739.989,
        783.991,
        830.609,
        880.0,
        932.328,
        987.767
      ];
      let key = document.getElementById("keyboard").firstElementChild;
      
      obniz.onconnect = async function() {
        let speaker = obniz.wired("Speaker", { signal: 0, gnd: 4 });
        for (let i = 0; i < frequency.length; i++) {
          key.dataset.freq = frequency[i];
          key.addEventListener(
            "click",
            async function() {
              speaker.play(Number(this.getAttribute("data-freq")));
              await obniz.wait(500);
              speaker.stop();
            },
            false
          );
          key = key.nextElementSibling;
        }
      };
    </script>
  </body>
</html>

Credits

obniz developer team
80 projects • 35 followers
Development board "obniz" is controlled via the internet.
Contact

Comments

Please log in or sign up to comment.