Spin code for Parallax WX ESP8266 WiFi Module?
in Propeller 1
I'm looking at Parallax WX ESP8266 WiFi Module code examples and seeing only PBASIC and C. Is there really no Spin support for this device?

Comments
For example, this snippet joins a network:
OBJ wificom : "FullDuplexSerial" wificom.start(WX_DO,WX_DI,0,115200) ' rxpin, txpin, mode, baudrate wificom.rxflush ' Clear RX buffer wificom.str(string($FE,"JOIN:")) wificom.str(@ssid) wificom.str(string(",")) wificom.str(@pass) wificom.str(string(13,10))And just to check... you've found the API document ?
All the serial commands are detailed there.
From memory, you might want to set either DO or DI low for a few milliseconds, to toggle the ESP module between serial command mode and transparent mode. The API describes that too.
https://www.parallax.com/downloads/parallax-wx-wi-fi-module-firmware-guide
I've heard that there is a new way to add Wi-Fi connectivity, is this true?
Is it listed in this guide?
Could you share a link and/or explain "what you've heard" ?