#ifndef _KADI_CONFIG_H_
#define _KADI_CONFIG_H_

/* SSID and password of your WiFi net ----------------------------------------*/
const char* ssid = "Wir haben kein WiFi";           //"your ssid";
const char* password = "WirHabenWirklichKeinWifi";  //"your password";
// const char* ssid = "Kais123";           //"your ssid";
// const char* password = "hallo1234";  //"your password";

/* KADi API Endpoint ----------------------------------------*/
String serverName = "http://europe-west3-kadi-db9da.cloudfunctions.net";
String qrCodeUrl = "https://firebasestorage.googleapis.com/v0/b/kadi-db9da.appspot.com/o/restaurants%2FeFK22byCe87OWU2epgRt%2Fbarcode.bmp?alt=media&token=7806a82d-67ae-4070-8eef-3c8dfae77f76";

/* Device Configuration ----------------------------------------*/
const int displayTimer = 7000;

const char* tokenId = "kaditoken1";  //Token of the device
const char* tableNumber = "T1";
const int offset = Font24.Height + ((strlen(tableNumber) - 1) * Font24.Width);
const char* tableStatus = "Frei";
const char* reservationTime = "";
const char* reservationName = "";

// const char* tokenId = "kaditoken2";  //Token of the device
// const char* tableNumber = "T2";
// const int offset = Font24.Height + ((strlen(tableNumber) - 1) * Font24.Width);
// const char* tableStatus = "Reserviert";
// const char* reservationTime = "21:00";
// const char* reservationName = "Arif Arifi";

#endif
