esp-12 card

I will do a project with esp-12e. However, there is no esp-12e card in the blynk application. What should I do in this situation ? I can’t use any other cards, I will only use esp-12e. Please help me?

The ESP-12 is a member of the ESP8266 family.
Choose sketches that use:

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

or preferably:

#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266_SSL.h>

You should also ensure that you have the latest version of the ESP8266 core installed (v3.1.2) and the latest Blynk Library installed (v1.2.0)

In the Arduino IDE choose either Generic ESP9266 or NodeMCU 1.0

Pete.