#include < ESP8266WiFi.h >
// WiFi credentials
const char* ssid = "Raghul";
const char* password = "raghul10";
// MAX6675 setup
int thermoDO = 4; // SO
int thermoCS = 12; // CS
int thermoCLK = 5; // SCK
// A4988 setup
const int stepPin = 22; // STEP
const int dirPin = 23; // DIR
// Manual control button
const int buttonPin = 13; // Button pin
void setup() {
Serial.begin(115200);
// Initialize WiFi
WiFi.begin(ssid, password);