├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── app ├── CMakeLists.txt ├── LePiClient │ ├── CMakeLists.txt │ └── LePiClient.cpp ├── LePiServer │ ├── CMakeLists.txt │ └── LePiServer.cpp ├── Player │ ├── CMakeLists.txt │ └── Player.cpp ├── PlayerThread │ ├── CMakeLists.txt │ └── PlayerThread.cpp └── README.md ├── cmake ├── modules │ ├── FindThreads.cmake │ └── Findbcm2835.cmake └── third-party.cmake ├── lib ├── CMakeLists.txt ├── leptonAPI │ ├── CMakeLists.txt │ ├── include │ │ ├── LeptonAPI.h │ │ ├── LeptonCamera.h │ │ ├── LeptonCommon.h │ │ └── LeptonUtils.h │ └── src │ │ ├── LeptonAPI.cpp │ │ ├── LeptonCamera.cpp │ │ └── LeptonUtils.cpp ├── leptonSDKEmb32PUB │ ├── CMakeLists.txt │ ├── include │ │ ├── LEPTON_AGC.h │ │ ├── LEPTON_ErrorCodes.h │ │ ├── LEPTON_I2C_Protocol.h │ │ ├── LEPTON_I2C_Reg.h │ │ ├── LEPTON_I2C_Service.h │ │ ├── LEPTON_Macros.h │ │ ├── LEPTON_OEM.h │ │ ├── LEPTON_RAD.h │ │ ├── LEPTON_SDK.h │ │ ├── LEPTON_SDKConfig.h │ │ ├── LEPTON_SYS.h │ │ ├── LEPTON_Types.h │ │ ├── LEPTON_VID.h │ │ ├── crc16.h │ │ └── raspi_I2C.h │ └── src │ │ ├── LEPTON_AGC.c │ │ ├── LEPTON_I2C_Protocol.c │ │ ├── LEPTON_I2C_Service.c │ │ ├── LEPTON_OEM.c │ │ ├── LEPTON_RAD.c │ │ ├── LEPTON_SDK.c │ │ ├── LEPTON_SYS.c │ │ ├── LEPTON_VID.c │ │ ├── crc16fast.c │ │ └── raspi_I2C.c └── utils │ ├── CMakeLists.txt │ ├── include │ ├── Connection.h │ └── ConnectionCommon.h │ └── src │ └── Connection.cpp └── resources ├── LePiClient.png ├── LePiServer.png ├── PlayerThread_Lepton3.png ├── Player_Lepton3.png └── lepton-raspberryPi wiring.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build 3 | install 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/LePiClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/LePiClient/CMakeLists.txt -------------------------------------------------------------------------------- /app/LePiClient/LePiClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/LePiClient/LePiClient.cpp -------------------------------------------------------------------------------- /app/LePiServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/LePiServer/CMakeLists.txt -------------------------------------------------------------------------------- /app/LePiServer/LePiServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/LePiServer/LePiServer.cpp -------------------------------------------------------------------------------- /app/Player/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/Player/CMakeLists.txt -------------------------------------------------------------------------------- /app/Player/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/Player/Player.cpp -------------------------------------------------------------------------------- /app/PlayerThread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/PlayerThread/CMakeLists.txt -------------------------------------------------------------------------------- /app/PlayerThread/PlayerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/PlayerThread/PlayerThread.cpp -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/app/README.md -------------------------------------------------------------------------------- /cmake/modules/FindThreads.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/cmake/modules/FindThreads.cmake -------------------------------------------------------------------------------- /cmake/modules/Findbcm2835.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/cmake/modules/Findbcm2835.cmake -------------------------------------------------------------------------------- /cmake/third-party.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/cmake/third-party.cmake -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/leptonAPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/CMakeLists.txt -------------------------------------------------------------------------------- /lib/leptonAPI/include/LeptonAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/include/LeptonAPI.h -------------------------------------------------------------------------------- /lib/leptonAPI/include/LeptonCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/include/LeptonCamera.h -------------------------------------------------------------------------------- /lib/leptonAPI/include/LeptonCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/include/LeptonCommon.h -------------------------------------------------------------------------------- /lib/leptonAPI/include/LeptonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/include/LeptonUtils.h -------------------------------------------------------------------------------- /lib/leptonAPI/src/LeptonAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/src/LeptonAPI.cpp -------------------------------------------------------------------------------- /lib/leptonAPI/src/LeptonCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/src/LeptonCamera.cpp -------------------------------------------------------------------------------- /lib/leptonAPI/src/LeptonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonAPI/src/LeptonUtils.cpp -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/CMakeLists.txt -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_AGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_AGC.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_ErrorCodes.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_I2C_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_I2C_Protocol.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_I2C_Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_I2C_Reg.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_I2C_Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_I2C_Service.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_Macros.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_OEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_OEM.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_RAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_RAD.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_SDK.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_SDKConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_SDKConfig.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_SYS.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_Types.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/LEPTON_VID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/LEPTON_VID.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/crc16.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/include/raspi_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/include/raspi_I2C.h -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_AGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_AGC.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_I2C_Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_I2C_Protocol.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_I2C_Service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_I2C_Service.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_OEM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_OEM.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_RAD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_RAD.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_SDK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_SDK.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_SYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_SYS.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/LEPTON_VID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/LEPTON_VID.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/crc16fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/crc16fast.c -------------------------------------------------------------------------------- /lib/leptonSDKEmb32PUB/src/raspi_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/leptonSDKEmb32PUB/src/raspi_I2C.c -------------------------------------------------------------------------------- /lib/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/utils/CMakeLists.txt -------------------------------------------------------------------------------- /lib/utils/include/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/utils/include/Connection.h -------------------------------------------------------------------------------- /lib/utils/include/ConnectionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/utils/include/ConnectionCommon.h -------------------------------------------------------------------------------- /lib/utils/src/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/lib/utils/src/Connection.cpp -------------------------------------------------------------------------------- /resources/LePiClient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/resources/LePiClient.png -------------------------------------------------------------------------------- /resources/LePiServer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/resources/LePiServer.png -------------------------------------------------------------------------------- /resources/PlayerThread_Lepton3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/resources/PlayerThread_Lepton3.png -------------------------------------------------------------------------------- /resources/Player_Lepton3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/resources/Player_Lepton3.png -------------------------------------------------------------------------------- /resources/lepton-raspberryPi wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmac/LePi/HEAD/resources/lepton-raspberryPi wiring.png --------------------------------------------------------------------------------