//==========================================================================================
//
// Project: Buzzer
// Date: 25/11/21
// Author: Filippo Bilardo
//
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//
//
// Ver    Date      Comment
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// 1.0.0  25/11/21  Versione iniziale
//
//==========================================================================================
//------------------------------------------------------------------------------------------
//=== Includes =============================================================================
//------------------------------------------------------------------------------------------
#include <Arduino.h>
#include "Buzzer.h"

//------------------------------------------------------------------------------------------
//=== setup ================================================================================
//------------------------------------------------------------------------------------------
void setup() {
  bzInit();

  bzTest(0);
  bzTest(1);
  bzTest(2);
  bzTest(3);
}

void loop() {;}