// Example WiFi credentials file for VCNL4010_publish_to_MQTT.ino
//
// To use:
// 1. Copy this file.
// 2. Rename the copy to secrets.h.
// 3. Replace the placeholder values with your local WiFi credentials.
// 4. Keep secrets.h private and do not publish it.

#ifndef SECRETS_H
#define SECRETS_H

#define WIFI_SSID "YOUR_WIFI_NAME"
#define WIFI_PASSWORD "YOUR_WIFI_PASSWORD"

#endif
