vintlabs / fauxmoESP

Add voice control of your ESP32 and ESP8266 devices using Amazon Alexa
MIT License
383 stars 69 forks source link

credentials.h No such file or directory #65

Closed pvint closed 5 years ago

pvint commented 5 years ago

Original report by Marco Roser (Bitbucket: CrufireX, GitHub: CrufireX).


Hello everyone,

i wanted to upload the basic example sketch on my ESP8266 Node MCU 1.0. But the IDE always says: credentials.h No such file or directory.

Can anyone help me with the issue ?

pvint commented 5 years ago

Original comment by Grant J (Bitbucket: devgrantj, ).


You probably just need to change the name of credentials.sample.h to "credentials.h" and define your WiFi SSID & Password directives.

#!arduino
#define WIFI_SSID "..."
#define WIFI_PASS "..."

..

pvint commented 5 years ago

Original comment by Xose Pérez (Bitbucket: [Xose Pérez](https://bitbucket.org/Xose Pérez), ).


Right. I have added a comment in the examples explaining this.