Initial Commit

This commit is contained in:
jonas
2020-06-20 22:16:19 +02:00
parent b643d2874b
commit 864015477e
6 changed files with 305 additions and 1 deletions

13
Tone32.h Executable file
View File

@@ -0,0 +1,13 @@
#ifndef _TONE32_h
#define _TONE32_h
#define TONE_CHANNEL 15
#include "Arduino.h"
#include "pitches.h"
void tone(uint8_t pin, unsigned int frequency, unsigned long duration = 0, uint8_t channel = TONE_CHANNEL);
void noTone(uint8_t pin, uint8_t channel = TONE_CHANNEL);
#endif