Skip to content

Instantly share code, notes, and snippets.

@HerrRiebmann
HerrRiebmann / Soundmaschine.ino
Created February 14, 2020 16:30
Arduino Soundmaschine - 4x4 Keypad
#include <Keypad.h>
#include <EEPROM.h>
#include "Arduino.h"
#include "SoftwareSerial.h"
#include "DFRobotDFPlayerMini.h"
const byte COLS = 4; //4 Columns
const byte ROWS = 4; //4 Rows
char hexaKeys[ROWS][COLS] = {
{4,3,2,1},