Skip to content

Commit

Permalink
FTP Example added links to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Nov 8, 2023
1 parent f83465d commit c74b7c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/examples-communication/ftp/ftp-client/ftp-client.ino
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* @author Phil Schatzmann
* @brief Receiving audio via FTP and writing to I2S of the AudioKit.
* Replace the userids, passwords and ip adresses with your own!
* And don't forget to read the Wiki of the imported projects
* @version 0.1
* @date 2023-11-09
*
Expand All @@ -11,9 +12,9 @@

#include "WiFi.h"
#include "ArduinoFTPClient.h" // install https://github.com/pschatzmann/TinyFTPClient
#include "AudioTools.h"
#include "AudioCodecs/CodecMP3Helix.h"
#include "AudioLibs/AudioKit.h"
#include "AudioTools.h" // https://github.com/pschatzmann/arduino-audio-tools
#include "AudioCodecs/CodecMP3Helix.h" // https://github.com/pschatzmann/arduino-libhelix
#include "AudioLibs/AudioKit.h" // https://github.com/pschatzmann/arduino-audiokit

WiFiClient cmd;
WiFiClient data;
Expand Down

0 comments on commit c74b7c6

Please sign in to comment.