#ifndef ENV_h
#define ENV_h

#include <Ethernet.h>

// WIFI
const char* SSID = "your-ssid";
const char* PASSWORD = "your-wifi-password";
int CHANNEL = 6;

IPAddress IP(192, 168, 1, 120);
IPAddress GATEWAY(192, 168, 1, 1);
IPAddress SUBNET(255, 255, 0, 0);
const uint8_t BSID[] = {0x38, 0xB5, 0xC9, 0xC5, 0x23, 0xA0};

// MQTT
const char* mqtt_server = "your-mqtt-broker-ip";
const int mqtt_port = 1883; 
const char* mqtt_user = "your-mqtt-user"; 
const char* mqtt_password = "your-mqtt-password";
const char* report_topic = "your-plant-topic";
const char* watering_topic = "your-watering-topic";

#endif
