Can be used for streaming data (webcam or screen capture) from the Windows to WSL
Run from a WSL terminal
ip route list default | awk '{print $3}'
Can be used for streaming data (webcam or screen capture) from the Windows to WSL
Run from a WSL terminal
ip route list default | awk '{print $3}'
// See https://github.com/bportaluri/WiFiEsp | |
// See blog post https://medium.com/@mykeels/connect-to-wifi-with-arduino-9eee4b02d904 | |
#include <WiFiEsp.h> | |
#ifndef HAVE_HWSERIAL1 | |
#include <SoftwareSerial.h> | |
SoftwareSerial wSerial(6, 7); | |
#endif | |
void setup() { |