├── .gitignore ├── LICENSE ├── README.md ├── docs └── lepton_interface_design_document.pdf ├── hardware ├── LeptonBreakout │ ├── LeptonAdaptor.step │ └── LeptonAdaptorSch.PDF └── LeptonMicroBreakout │ ├── PT Micro Breakout Board Dimensional Drawing.pdf │ ├── PT-Micro.kicad_mod │ ├── PT_micro_bob.kicad_sym │ ├── PureThermal Micro Breakout Board Datasheet Rev2 May 2023.pdf │ └── PureThermal_Micro_BoB.step └── software ├── STM32F3Discovery_ChibiOS ├── Makefile ├── README.md ├── chconf.h ├── flir_dump.c ├── halconf.h ├── main.c ├── make_all.bat ├── make_changes.bat ├── mcuconf.h ├── usbcfg.c └── usbcfg.h ├── ThermalView ├── Makefile ├── README.md ├── include │ ├── callbacks.h │ └── guicon.h ├── obj │ └── .gitignore ├── res │ ├── Application.ico │ ├── Application.manifest │ ├── main_dialog.rc │ └── resource.h └── src │ ├── guicon.c │ ├── serial_win32.c │ ├── serial_win32.h │ └── winmain.c ├── arduino_i2c └── Lepton.ino ├── beagleboneblack_video ├── LeptonThread.cpp ├── LeptonThread.h ├── Lepton_I2C.cpp ├── Lepton_I2C.h ├── MyLabel.cpp ├── MyLabel.h ├── Palettes.cpp ├── Palettes.h ├── README.md ├── SPI.cpp ├── SPI.h ├── bbb.pro ├── leptonSDKEmb32PUB │ ├── LEPTON_AGC.c │ ├── LEPTON_AGC.h │ ├── LEPTON_ErrorCodes.h │ ├── LEPTON_I2C_Protocol.c │ ├── LEPTON_I2C_Protocol.h │ ├── LEPTON_I2C_Reg.h │ ├── LEPTON_I2C_Service.c │ ├── LEPTON_I2C_Service.h │ ├── LEPTON_Macros.h │ ├── LEPTON_SDK.c │ ├── LEPTON_SDK.h │ ├── LEPTON_SDKConfig.h │ ├── LEPTON_SYS.c │ ├── LEPTON_SYS.h │ ├── LEPTON_Types.h │ ├── LEPTON_VID.c │ ├── LEPTON_VID.h │ ├── Makefile │ ├── bbb_I2C.c │ ├── bbb_I2C.h │ ├── crc16.h │ └── crc16fast.c └── main.cpp ├── edison_capture ├── README.md └── lepton_capture.c ├── flirpi ├── Makefile ├── README.md ├── fblept.c ├── greyenhance.sh ├── leptbmp.c ├── leptcam.c ├── leptgraypng.c ├── leptsci.c ├── leptsci.h └── picamoverlay.sh ├── raspberrypi_capture ├── Makefile ├── README.md └── raspberrypi_capture.c ├── raspberrypi_libs └── leptonSDKEmb32PUB │ ├── .gitignore │ ├── LEPTON_AGC.c │ ├── LEPTON_AGC.h │ ├── LEPTON_ErrorCodes.h │ ├── LEPTON_I2C_Protocol.c │ ├── LEPTON_I2C_Protocol.h │ ├── LEPTON_I2C_Reg.h │ ├── LEPTON_I2C_Service.c │ ├── LEPTON_I2C_Service.h │ ├── LEPTON_Macros.h │ ├── LEPTON_OEM.c │ ├── LEPTON_OEM.h │ ├── LEPTON_SDK.c │ ├── LEPTON_SDK.h │ ├── LEPTON_SDKConfig.h │ ├── LEPTON_SYS.c │ ├── LEPTON_SYS.h │ ├── LEPTON_Types.h │ ├── LEPTON_VID.c │ ├── LEPTON_VID.h │ ├── Makefile │ ├── crc16.h │ ├── crc16fast.c │ ├── raspi_I2C.c │ └── raspi_I2C.h ├── raspberrypi_qt ├── .gitignore ├── LeptonThread.cpp ├── LeptonThread.h ├── README.md ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── raspberrypi_qt.pro ├── raspberrypi_video ├── .gitignore ├── LeptonThread.cpp ├── LeptonThread.h ├── Lepton_I2C.cpp ├── Lepton_I2C.h ├── MyLabel.cpp ├── MyLabel.h ├── Palettes.cpp ├── Palettes.h ├── README.md ├── SPI.cpp ├── SPI.h ├── main.cpp └── raspberrypi_video.pro ├── stm32nucleo_401re ├── README.md └── main.cpp └── v4l2lepton ├── Lepton_I2C.cpp ├── Lepton_I2C.h ├── Makefile ├── Palettes.cpp ├── Palettes.h ├── README.md ├── SPI.cpp ├── SPI.h ├── leptsci.c ├── leptsci.h └── v4l2lepton.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/README.md -------------------------------------------------------------------------------- /docs/lepton_interface_design_document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/docs/lepton_interface_design_document.pdf -------------------------------------------------------------------------------- /hardware/LeptonBreakout/LeptonAdaptor.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonBreakout/LeptonAdaptor.step -------------------------------------------------------------------------------- /hardware/LeptonBreakout/LeptonAdaptorSch.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonBreakout/LeptonAdaptorSch.PDF -------------------------------------------------------------------------------- /hardware/LeptonMicroBreakout/PT Micro Breakout Board Dimensional Drawing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonMicroBreakout/PT Micro Breakout Board Dimensional Drawing.pdf -------------------------------------------------------------------------------- /hardware/LeptonMicroBreakout/PT-Micro.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonMicroBreakout/PT-Micro.kicad_mod -------------------------------------------------------------------------------- /hardware/LeptonMicroBreakout/PT_micro_bob.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonMicroBreakout/PT_micro_bob.kicad_sym -------------------------------------------------------------------------------- /hardware/LeptonMicroBreakout/PureThermal Micro Breakout Board Datasheet Rev2 May 2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonMicroBreakout/PureThermal Micro Breakout Board Datasheet Rev2 May 2023.pdf -------------------------------------------------------------------------------- /hardware/LeptonMicroBreakout/PureThermal_Micro_BoB.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/hardware/LeptonMicroBreakout/PureThermal_Micro_BoB.step -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/Makefile -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/README.md -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/chconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/chconf.h -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/flir_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/flir_dump.c -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/halconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/halconf.h -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/main.c -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/make_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/make_all.bat -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/make_changes.bat: -------------------------------------------------------------------------------- 1 | make -r 2 | pause 3 | -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/mcuconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/mcuconf.h -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/usbcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/usbcfg.c -------------------------------------------------------------------------------- /software/STM32F3Discovery_ChibiOS/usbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/STM32F3Discovery_ChibiOS/usbcfg.h -------------------------------------------------------------------------------- /software/ThermalView/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/Makefile -------------------------------------------------------------------------------- /software/ThermalView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/README.md -------------------------------------------------------------------------------- /software/ThermalView/include/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/include/callbacks.h -------------------------------------------------------------------------------- /software/ThermalView/include/guicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/include/guicon.h -------------------------------------------------------------------------------- /software/ThermalView/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/ThermalView/res/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/res/Application.ico -------------------------------------------------------------------------------- /software/ThermalView/res/Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/res/Application.manifest -------------------------------------------------------------------------------- /software/ThermalView/res/main_dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/res/main_dialog.rc -------------------------------------------------------------------------------- /software/ThermalView/res/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/res/resource.h -------------------------------------------------------------------------------- /software/ThermalView/src/guicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/src/guicon.c -------------------------------------------------------------------------------- /software/ThermalView/src/serial_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/src/serial_win32.c -------------------------------------------------------------------------------- /software/ThermalView/src/serial_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/src/serial_win32.h -------------------------------------------------------------------------------- /software/ThermalView/src/winmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/ThermalView/src/winmain.c -------------------------------------------------------------------------------- /software/arduino_i2c/Lepton.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/arduino_i2c/Lepton.ino -------------------------------------------------------------------------------- /software/beagleboneblack_video/LeptonThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/LeptonThread.cpp -------------------------------------------------------------------------------- /software/beagleboneblack_video/LeptonThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/LeptonThread.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/Lepton_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/Lepton_I2C.cpp -------------------------------------------------------------------------------- /software/beagleboneblack_video/Lepton_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/Lepton_I2C.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/MyLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/MyLabel.cpp -------------------------------------------------------------------------------- /software/beagleboneblack_video/MyLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/MyLabel.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/Palettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/Palettes.cpp -------------------------------------------------------------------------------- /software/beagleboneblack_video/Palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/Palettes.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/README.md -------------------------------------------------------------------------------- /software/beagleboneblack_video/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/SPI.cpp -------------------------------------------------------------------------------- /software/beagleboneblack_video/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/SPI.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/bbb.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/bbb.pro -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_AGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_AGC.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_AGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_AGC.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_ErrorCodes.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Reg.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Service.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_I2C_Service.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_Macros.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SDK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SDK.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SDK.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SDKConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SDKConfig.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SYS.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_SYS.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_Types.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_VID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_VID.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_VID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/LEPTON_VID.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/Makefile -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/bbb_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/bbb_I2C.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/bbb_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/bbb_I2C.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/crc16.h -------------------------------------------------------------------------------- /software/beagleboneblack_video/leptonSDKEmb32PUB/crc16fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/leptonSDKEmb32PUB/crc16fast.c -------------------------------------------------------------------------------- /software/beagleboneblack_video/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/beagleboneblack_video/main.cpp -------------------------------------------------------------------------------- /software/edison_capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/edison_capture/README.md -------------------------------------------------------------------------------- /software/edison_capture/lepton_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/edison_capture/lepton_capture.c -------------------------------------------------------------------------------- /software/flirpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/Makefile -------------------------------------------------------------------------------- /software/flirpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/README.md -------------------------------------------------------------------------------- /software/flirpi/fblept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/fblept.c -------------------------------------------------------------------------------- /software/flirpi/greyenhance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/greyenhance.sh -------------------------------------------------------------------------------- /software/flirpi/leptbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/leptbmp.c -------------------------------------------------------------------------------- /software/flirpi/leptcam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/leptcam.c -------------------------------------------------------------------------------- /software/flirpi/leptgraypng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/leptgraypng.c -------------------------------------------------------------------------------- /software/flirpi/leptsci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/leptsci.c -------------------------------------------------------------------------------- /software/flirpi/leptsci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/leptsci.h -------------------------------------------------------------------------------- /software/flirpi/picamoverlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/flirpi/picamoverlay.sh -------------------------------------------------------------------------------- /software/raspberrypi_capture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_capture/Makefile -------------------------------------------------------------------------------- /software/raspberrypi_capture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_capture/README.md -------------------------------------------------------------------------------- /software/raspberrypi_capture/raspberrypi_capture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_capture/raspberrypi_capture.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Debug 3 | *.o 4 | 5 | -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_AGC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_AGC.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_AGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_AGC.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_ErrorCodes.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Protocol.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Reg.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Service.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_I2C_Service.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_Macros.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_OEM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_OEM.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_OEM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_OEM.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SDK.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SDK.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SDK.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SDKConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SDKConfig.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SYS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SYS.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SYS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_SYS.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_Types.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_VID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_VID.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_VID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/LEPTON_VID.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/Makefile -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/crc16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/crc16.h -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/crc16fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/crc16fast.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/raspi_I2C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/raspi_I2C.c -------------------------------------------------------------------------------- /software/raspberrypi_libs/leptonSDKEmb32PUB/raspi_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_libs/leptonSDKEmb32PUB/raspi_I2C.h -------------------------------------------------------------------------------- /software/raspberrypi_qt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/.gitignore -------------------------------------------------------------------------------- /software/raspberrypi_qt/LeptonThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/LeptonThread.cpp -------------------------------------------------------------------------------- /software/raspberrypi_qt/LeptonThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/LeptonThread.h -------------------------------------------------------------------------------- /software/raspberrypi_qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/README.md -------------------------------------------------------------------------------- /software/raspberrypi_qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/main.cpp -------------------------------------------------------------------------------- /software/raspberrypi_qt/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/mainwindow.cpp -------------------------------------------------------------------------------- /software/raspberrypi_qt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/mainwindow.h -------------------------------------------------------------------------------- /software/raspberrypi_qt/raspberrypi_qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_qt/raspberrypi_qt.pro -------------------------------------------------------------------------------- /software/raspberrypi_video/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/.gitignore -------------------------------------------------------------------------------- /software/raspberrypi_video/LeptonThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/LeptonThread.cpp -------------------------------------------------------------------------------- /software/raspberrypi_video/LeptonThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/LeptonThread.h -------------------------------------------------------------------------------- /software/raspberrypi_video/Lepton_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/Lepton_I2C.cpp -------------------------------------------------------------------------------- /software/raspberrypi_video/Lepton_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/Lepton_I2C.h -------------------------------------------------------------------------------- /software/raspberrypi_video/MyLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/MyLabel.cpp -------------------------------------------------------------------------------- /software/raspberrypi_video/MyLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/MyLabel.h -------------------------------------------------------------------------------- /software/raspberrypi_video/Palettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/Palettes.cpp -------------------------------------------------------------------------------- /software/raspberrypi_video/Palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/Palettes.h -------------------------------------------------------------------------------- /software/raspberrypi_video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/README.md -------------------------------------------------------------------------------- /software/raspberrypi_video/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/SPI.cpp -------------------------------------------------------------------------------- /software/raspberrypi_video/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/SPI.h -------------------------------------------------------------------------------- /software/raspberrypi_video/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/main.cpp -------------------------------------------------------------------------------- /software/raspberrypi_video/raspberrypi_video.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/raspberrypi_video/raspberrypi_video.pro -------------------------------------------------------------------------------- /software/stm32nucleo_401re/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/stm32nucleo_401re/README.md -------------------------------------------------------------------------------- /software/stm32nucleo_401re/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/stm32nucleo_401re/main.cpp -------------------------------------------------------------------------------- /software/v4l2lepton/Lepton_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/Lepton_I2C.cpp -------------------------------------------------------------------------------- /software/v4l2lepton/Lepton_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/Lepton_I2C.h -------------------------------------------------------------------------------- /software/v4l2lepton/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/Makefile -------------------------------------------------------------------------------- /software/v4l2lepton/Palettes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/Palettes.cpp -------------------------------------------------------------------------------- /software/v4l2lepton/Palettes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/Palettes.h -------------------------------------------------------------------------------- /software/v4l2lepton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/README.md -------------------------------------------------------------------------------- /software/v4l2lepton/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/SPI.cpp -------------------------------------------------------------------------------- /software/v4l2lepton/SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/SPI.h -------------------------------------------------------------------------------- /software/v4l2lepton/leptsci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/leptsci.c -------------------------------------------------------------------------------- /software/v4l2lepton/leptsci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/leptsci.h -------------------------------------------------------------------------------- /software/v4l2lepton/v4l2lepton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupgets/LeptonModule/HEAD/software/v4l2lepton/v4l2lepton.cpp --------------------------------------------------------------------------------