Support library for the ESP8266 Wireless Terminal. Can also be used for communicating with any VT100-compatible terminal.
espterm.cpp@0:20fb68233f89, 2017-03-06 (annotated)
- Committer:
- MightyPork
- Date:
- Mon Mar 06 20:45:05 2017 +0000
- Revision:
- 0:20fb68233f89
- Child:
- 1:09dfc9fd55f4
some initial work
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MightyPork | 0:20fb68233f89 | 1 | #include "mbed.h" |
MightyPork | 0:20fb68233f89 | 2 | #include "espterm.hpp" |
MightyPork | 0:20fb68233f89 | 3 | |
MightyPork | 0:20fb68233f89 | 4 | ESPTerm::ESPTerm(Serial *s) { |
MightyPork | 0:20fb68233f89 | 5 | this->ser = s; |
MightyPork | 0:20fb68233f89 | 6 | } |