I don't have such board, so I can't test it for you. But this is how I would try to do it:
- generate the code of your project with following settings:
Connection: Wifi access point
Device: NodeMCU v2
Module:On board ESP8266
IDE:Arduino IDE
- replace
#include <ESP8266WiFi.h>
with
#include <WiFi101.h>
Then you will also need to change some lines in the remotexy library modules/esp8266wifi.h
- as Wifi101 doesn't know WiFi.softAPdisconnect, WiFi.mode & server->setNoDelay , put them in ifdef's (Wifi101)
- replace WiFi.softAP with beginAP
Have a look at https://www.arduino.cc/en/Reference/WiFi101BeginAP to see if other things are necessary
And when it works, post your results here!