This commit is contained in:
e2002
2022-02-14 14:45:10 +03:00
parent 4924d97b61
commit 3c12fb419f
7 changed files with 43 additions and 11 deletions

View File

@@ -15,8 +15,9 @@ Player::Player(): Audio(VS1053_CS, VS1053_DCS, VS1053_DREQ) {
}
void ResetChip(){
pinMode(VS1053_RST, OUTPUT);
digitalWrite(VS1053_RST, LOW);
delay(10);
delay(30);
digitalWrite(VS1053_RST, HIGH);
delay(100);
}