Up until now I have only used AT commands through serial to modify the settings of the ESP8266. These seem slightly limited, and as a result I think I need to move to using the ESP8266 SDK.
My end goal is to use the command
wifi_softap_set_dhcps_offer_option
Simply put, I am confused how to do this. According to the GitHub page https://github.com/esp8266/Arduino , the Arduino SDK
brings support for ESP8266 chip to the Arduino environment. It lets you write sketches using familiar Arduino functions and libraries, and run them directly on ESP8266, no external microcontroller required.
Do I need to write a custom sketch just to call a function on the ESP8266? Or can the function be called through the Arduino in a way similar to AT commands are used? In either case can anyone push me in a direction for getting started? I am having a tough time finding beginner guides so links are also appreciated!