Skip to content

Commit f6fcb94

Browse files
Update remoteSAM.ino
1 parent 3ca1c01 commit f6fcb94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/remoteSAM/remoteSAM.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void loop() {
1313
}
1414
#else
1515

16-
#include <ESP8266SAM.h>
16+
#include <ESP8266SAM_ES.h>
1717
#include "AudioOutputI2SNoDAC.h"
1818

1919
#include <ESP8266mDNS.h>
@@ -62,7 +62,7 @@ void setup()
6262
Serial.println(message_decoded);
6363
Serial.println(message);
6464

65-
ESP8266SAM *sam = new ESP8266SAM;
65+
ESP8266SAM_ES *sam = new ESP8266SAM_ES;
6666
sam->Say(out, message);
6767
delete sam;
6868
server.send(200, "text/plain", "OK");
@@ -83,9 +83,9 @@ void ssdp() {
8383
SSDP.setDeviceType("upnp: rootdevice");
8484
SSDP.setSerialNumber("000000000001");
8585
SSDP.setURL("/say/connected");
86-
SSDP.setModelName("ESP8266SAM");
86+
SSDP.setModelName("ESP8266SAM_ES");
8787
SSDP.setModelNumber("0000000000001");
88-
SSDP.setModelURL("https://github.com/earlephilhower/ESP8266SAM");
88+
SSDP.setModelURL("https://github.com/pablomarquez76/ESP8266SAM_ES");
8989
SSDP.setManufacturer("earlephilhower");
9090
SSDP.setManufacturerURL("https://github.com/earlephilhower/");
9191
SSDP.begin();

0 commit comments

Comments
 (0)