arkhipenko/esp32-cam-mjpeg-multiclient

Issue with home_wifi_multi.h: No such file or directory

Closed this issue · 1 comments

I was getting the error
home_wifi_multi.h: No such file or directory
what do I need to do?

issues with ESPmulti
ESP32 streaming library

This is an include with my home wifi credentials - obviously I have not included it...
This is what you need to do:

  1. Create a file called "home_wifi_multi.h" in the same folder OR under a separate subfolder of the "libraries" folder of Arduino IDE. (You are creating a "fake" library really - I called it "MySettings").
  2. Place the following text in the file:
    #define SSID1 "replace with your wifi ssid"
    #define PWD1 "replace your wifi password"
  3. Save.

Should work then.