Arduino VS1053
Loading...
Searching...
No Matches
VS1053Config.h
1#pragma once
2
3// declare namespace
4namespace arduino_vs1053{}
5
6// Define Logging Port
7#ifndef VS1053_LOG_PORT
8#define VS1053_LOG_PORT Serial
9#endif
10
11// I2S Configuration: Use custom SPI Class for ESP
12#define USE_ESP_SPI_CUSTOM 0
13
14// In Arduino we usually do not want to work with namespaces. So we bring in the relevant namespace automatically.
15// Comment out or define VS1053_NO_USING_NAMESPACE if you need to use namespace in sketch
16#ifndef VS1053_NO_USING_NAMESPACE
17using namespace arduino_vs1053;
18#endif