This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const char string_0[] PROGMEM = "Le petit princeLe petit princeLe petit princeLe petit prince"; // "String 0" etc are strings to store - change to suit. | |
const char string_1[] PROGMEM = "Le petit princeLe petit princeLe petit princeLe petit prince"; | |
const char string_2[] PROGMEM = "Le petit princeLe petit princeLe petit princeLe petit prince"; | |
const char string_3[] PROGMEM = "Le petit princeLe petit princeLe petit princeLe petit prince"; | |
const char string_4[] PROGMEM = "Le petit princeLe petit princeLe petit princeLe petit prince"; | |
const char string_5[] PROGMEM = "Le petit princeLe petit princeLe petit princeLe petit prince"; | |
const char *const titles[] PROGMEM = {string_0, string_1, string_2, string_3, string_4, string_5}; | |
/* Lecteur MP3 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <AsyncHTTPSRequest_Generic.h> | |
#include <AsyncHTTPSRequest_Impl_Generic.h> // https://github.com/khoih-prog/AsyncHTTPRequest_Generic | |
#include <Ticker.h> | |
//https://www.arduino.cc/en/Tutorial/BuiltInExamples/Debounce | |
#include <WiFi.h> // Utilisation de la librairie WiFi.h | |
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager | |
#include <HTTPClient.h> |
OlderNewer