├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── ScreenShotReceiver ├── ScreenShotReceiver.ino └── src │ ├── TCPReceiver.h │ ├── tjpgdClass.cpp │ └── tjpgdClass.h ├── ScreenShotSender.exe └── ScreenShotSender ├── App.config ├── FormCaptureBox.Designer.cs ├── FormCaptureBox.cs ├── FormCaptureBox.resx ├── FormSenderMain.Designer.cs ├── FormSenderMain.cs ├── FormSenderMain.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── ScreenShotSender.csproj ├── ScreenShotSender.csproj.user ├── ScreenShotSender.sln └── TCPSender.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: lovyan03 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShotReceiver/ScreenShotReceiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotReceiver/ScreenShotReceiver.ino -------------------------------------------------------------------------------- /ScreenShotReceiver/src/TCPReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotReceiver/src/TCPReceiver.h -------------------------------------------------------------------------------- /ScreenShotReceiver/src/tjpgdClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotReceiver/src/tjpgdClass.cpp -------------------------------------------------------------------------------- /ScreenShotReceiver/src/tjpgdClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotReceiver/src/tjpgdClass.h -------------------------------------------------------------------------------- /ScreenShotSender.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender.exe -------------------------------------------------------------------------------- /ScreenShotSender/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/App.config -------------------------------------------------------------------------------- /ScreenShotSender/FormCaptureBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/FormCaptureBox.Designer.cs -------------------------------------------------------------------------------- /ScreenShotSender/FormCaptureBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/FormCaptureBox.cs -------------------------------------------------------------------------------- /ScreenShotSender/FormCaptureBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/FormCaptureBox.resx -------------------------------------------------------------------------------- /ScreenShotSender/FormSenderMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/FormSenderMain.Designer.cs -------------------------------------------------------------------------------- /ScreenShotSender/FormSenderMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/FormSenderMain.cs -------------------------------------------------------------------------------- /ScreenShotSender/FormSenderMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/FormSenderMain.resx -------------------------------------------------------------------------------- /ScreenShotSender/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/Program.cs -------------------------------------------------------------------------------- /ScreenShotSender/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScreenShotSender/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ScreenShotSender/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/Properties/Resources.resx -------------------------------------------------------------------------------- /ScreenShotSender/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ScreenShotSender/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/Properties/Settings.settings -------------------------------------------------------------------------------- /ScreenShotSender/ScreenShotSender.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/ScreenShotSender.csproj -------------------------------------------------------------------------------- /ScreenShotSender/ScreenShotSender.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/ScreenShotSender.csproj.user -------------------------------------------------------------------------------- /ScreenShotSender/ScreenShotSender.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/ScreenShotSender.sln -------------------------------------------------------------------------------- /ScreenShotSender/TCPSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lovyan03/ESP32_ScreenShotReceiver/HEAD/ScreenShotSender/TCPSender.cs --------------------------------------------------------------------------------