So you're a Noob? Post your questions here until you graduate! Don't be shy.

User avatar
By PerH
#73368 Hi!

My first project with this cool litte unit is to make my Epson Projector controllable over Wifi. It has a RS232 contact and good command documentation.

I started with installing Arduino IDE, and i loaded one D1 with ESPeasy. I also bought a RS232 to TTL converter, and hooked it up.

This enabled me to control the projector by telnet to the D1, and send commands to the projector. Problem is, ESPeasy also transmits internal log messages to the serial bus, which the projector replies with ERR to..

This is why i want to make my own code simply for this use, Telnet is simple to use, so i'll try that.
(other suggestions to easily implementable communication to the D1 is well recieved, but i'll try to steer clear of MQTT for now)

Anyone here who can start me off in the right direction? :)
User avatar
By gdsports
#73400 See the WiFiTelnetToSerial example included when the ESP8266 package is installed.

https://github.com/esp8266/Arduino/blob ... Serial.ino

Or for a full featured (but not Arduino) WiFi to UART program see esp-link.

https://github.com/jeelabs/esp-link#esp ... -wrestmqtt
User avatar
By PerH
#73404 Perfect! thanks!

ESP Link is loaded now and it works well, but I think i'll try to modify the arduino example so the output is interpreted.

I.E. error codes are much easier to get in clear writing rather than a number.