├── .gitattributes ├── AES128 └── AES128.h ├── CloseBySonoff └── CloseBySonoff.ino ├── Hello_World └── Hello_World.ino ├── README.md ├── RealMaster └── RealMaster.ino ├── RealMasterESP8266 └── RealMasterESP8266.ino ├── RealSlave └── RealSlave.ino └── T_WatchButton ├── ESP_Now_header.h ├── T_WatchButton.ino └── config.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/.gitattributes -------------------------------------------------------------------------------- /AES128/AES128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/AES128/AES128.h -------------------------------------------------------------------------------- /CloseBySonoff/CloseBySonoff.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/CloseBySonoff/CloseBySonoff.ino -------------------------------------------------------------------------------- /Hello_World/Hello_World.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/Hello_World/Hello_World.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Encrypted-Remote-Control 2 | 3 | Files for YouTube video: https://youtu.be/cXh0T1CWtyg 4 | -------------------------------------------------------------------------------- /RealMaster/RealMaster.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/RealMaster/RealMaster.ino -------------------------------------------------------------------------------- /RealMasterESP8266/RealMasterESP8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/RealMasterESP8266/RealMasterESP8266.ino -------------------------------------------------------------------------------- /RealSlave/RealSlave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/RealSlave/RealSlave.ino -------------------------------------------------------------------------------- /T_WatchButton/ESP_Now_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/T_WatchButton/ESP_Now_header.h -------------------------------------------------------------------------------- /T_WatchButton/T_WatchButton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/T_WatchButton/T_WatchButton.ino -------------------------------------------------------------------------------- /T_WatchButton/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Encrypted-Remote-Control/HEAD/T_WatchButton/config.h --------------------------------------------------------------------------------