I'm a complete noobie so I am finding this quite difficult to debug. I'm using osoyoo uno board and ESP8266 wifi shield. And this is tutorial one. I followed all the steps, loaded up the library provided in the website and the sketch. Sandwitched the shield and the arduino.
I've looked at a number of posts but none seem to have this shield, some do a firmware update - this shield doesn't even have an 'accessible' connector with which to load any sort of update.
I included the relevant bits of the sketch here:
#include "WiFiEsp.h"
#include <SPI.h>
#ifndef HAVE_HWSERIAL1
#include "SoftwareSerial.h"
SoftwareSerial softserial(6, 7); // RX, TX
#endif
...
// check for the presence of the shield
if (WiFi.status() == WL_NO_SHIELD) {
Serial.println("WiFi shield not present");
// don't continue
while (true);
}