esp32 soundboard project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
406 B

#ifndef _SOUNDBOARD_H
#define _SOUNDBOARD_H
#include "hardware.h"
#include "soundboard.h"
#include "keyboard.h"
#include "sdcard.h"
#include "sound.h"
#include "wifi.h"
#include "bluetooth/bluetooth.h"
#define WIFI_SSID "ssid"
#define WIFI_PASSWORD "password"
extern Keyboard keyboard;
extern SDCard sdcard;
extern Sound sound;
extern Wifi wifi;
extern Bluetooth bluetooth;
#endif /* _SOUNDBOARD_H */