├── .gitattributes ├── LICENSE ├── README.md ├── data ├── create.html ├── createwebrtc.js ├── join.html ├── joinwebrtc.js └── webrtc.css └── webrtcVideoPrototype.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/README.md -------------------------------------------------------------------------------- /data/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/data/create.html -------------------------------------------------------------------------------- /data/createwebrtc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/data/createwebrtc.js -------------------------------------------------------------------------------- /data/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/data/join.html -------------------------------------------------------------------------------- /data/joinwebrtc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/data/joinwebrtc.js -------------------------------------------------------------------------------- /data/webrtc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/data/webrtc.css -------------------------------------------------------------------------------- /webrtcVideoPrototype.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecilMao/webrtc-in-esp8266/HEAD/webrtcVideoPrototype.ino --------------------------------------------------------------------------------