Supported? Need Help with my board(Red Board) with Blynk

Someone please help me. I tried to use my board with Blynk WiFi code…this one

#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = “myAuthToken”;

// Your WiFi credentials.
// Set password to “” for open networks.
char ssid[] = “NameofmyWiFi”;
char pass[] = “MyWiFipassword”;

void setup()
{
// Debug console
Serial.begin(9600);

Blynk.begin(auth, ssid, pass);
// You can also specify server:
//Blynk.begin(auth, ssid, pass, “blynk-cloud.com”, 80);
//Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
}

void loop()
{
Blynk.run();

}

My board has ATmega328 with ESP8266, and it made by What’s next, this is it https://whatsnext.shop/shop/red
The IDE appeared on this

#include <ESP8266WiFi.h>

                     ^

compilation terminated.

exit status 1
ESP8266WiFi.h: No such file or directory

I already installed the ESP8266 file on board manager and did the setup required for the board,
also already tested on my Wemos D1 and it did work very well. I don’t know if Blynk supported with the board or maybe something can be done to make this works. I’m a newbie so may be anything I have missed. Thanks a lot

You’re using the wrong example, if you have a look around in the forum you may find other examples.

Thank you for your reply, can you give me for information about the code? Should I use the WiFi code for generic ESP8266? I’m not sure what category that my board clssify to…

Just serach for your MCU: https://community.blynk.cc/search?q=ATmega328

Your board appears to be an Arduino with an embedded ESP for WiFi communication… probably similar in concept with the Robotdyn boards also mentioned in this forum. As far as Blynk is concerned, you treat it like an Arduino with ESP as shield… set the ESP as a WiFi-to-serial transceiver and program the Arduino accordingly.

http://help.blynk.cc/how-to-connect-different-hardware-with-blynk/arduino/esp8266-with-at-firmware

Search for similar concepts like the Robotdyn and experiment.