├── .gitattributes ├── .gitignore ├── Hardware ├── HeatPlatform.PcbLib ├── HeatPlatform.SchLib ├── HeatPlatform_SMT.PrjPcb ├── HeatPlatform_SMT_V1.0.pdf ├── HeatPlatform_V1.1.PcbDoc ├── HeatPlatform_V1.1.SchDoc └── README.md ├── Image ├── Back_16x16.BMP ├── CursorImage_16x16.BMP ├── CursorImage_8x8.BMP ├── Curve_16x16.BMP ├── EC11_sequential.jpg ├── HeatPlatform_Entity.jpg ├── HeatPlatform_PCB.jpg ├── HeatPlatform_PCB_Back.jpg ├── Heat_16x16.BMP ├── Info_16x16.BMP ├── Knobs_16x16.BMP ├── PID_16x16.BMP ├── Set_16x16.bmp ├── UNUnCursorImage_16x16.BMP ├── UnCursorImage_8x8.BMP ├── 升温32x32.bmp ├── 发热丝-弃.bmp └── 错误32x32.bmp ├── LICENSE ├── Model ├── HeatPlaform_SMT.stl ├── HeatPlatform_SMT_PCB.step └── 模型说明.md ├── README.md ├── Software ├── Firmware │ └── esp8266-20210202-v1.14.bin ├── README.md ├── config.json ├── font.py ├── knobs.py ├── main.py ├── max6675.py ├── microWebSocket.py ├── microWebSrv.py ├── pid.py ├── ssd1306.py ├── ssd1306_esp.py ├── surface.py └── wifi.py ├── Software_C ├── .gitignore ├── README.md ├── include │ └── README ├── lib │ ├── Adafruit-GFX-Library │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── Adafruit_GFX.cpp │ │ ├── Adafruit_GFX.h │ │ ├── Adafruit_GrayOLED.cpp │ │ ├── Adafruit_GrayOLED.h │ │ ├── Adafruit_SPITFT.cpp │ │ ├── Adafruit_SPITFT.h │ │ ├── Adafruit_SPITFT_Macros.h │ │ ├── Fonts │ │ │ ├── FreeMono12pt7b.h │ │ │ ├── FreeMono18pt7b.h │ │ │ ├── FreeMono24pt7b.h │ │ │ ├── FreeMono9pt7b.h │ │ │ ├── FreeMonoBold12pt7b.h │ │ │ ├── FreeMonoBold18pt7b.h │ │ │ ├── FreeMonoBold24pt7b.h │ │ │ ├── FreeMonoBold9pt7b.h │ │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ │ ├── FreeMonoOblique12pt7b.h │ │ │ ├── FreeMonoOblique18pt7b.h │ │ │ ├── FreeMonoOblique24pt7b.h │ │ │ ├── FreeMonoOblique9pt7b.h │ │ │ ├── FreeSans12pt7b.h │ │ │ ├── FreeSans18pt7b.h │ │ │ ├── FreeSans24pt7b.h │ │ │ ├── FreeSans9pt7b.h │ │ │ ├── FreeSansBold12pt7b.h │ │ │ ├── FreeSansBold18pt7b.h │ │ │ ├── FreeSansBold24pt7b.h │ │ │ ├── FreeSansBold9pt7b.h │ │ │ ├── FreeSansBoldOblique12pt7b.h │ │ │ ├── FreeSansBoldOblique18pt7b.h │ │ │ ├── FreeSansBoldOblique24pt7b.h │ │ │ ├── FreeSansBoldOblique9pt7b.h │ │ │ ├── FreeSansOblique12pt7b.h │ │ │ ├── FreeSansOblique18pt7b.h │ │ │ ├── FreeSansOblique24pt7b.h │ │ │ ├── FreeSansOblique9pt7b.h │ │ │ ├── FreeSerif12pt7b.h │ │ │ ├── FreeSerif18pt7b.h │ │ │ ├── FreeSerif24pt7b.h │ │ │ ├── FreeSerif9pt7b.h │ │ │ ├── FreeSerifBold12pt7b.h │ │ │ ├── FreeSerifBold18pt7b.h │ │ │ ├── FreeSerifBold24pt7b.h │ │ │ ├── FreeSerifBold9pt7b.h │ │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ │ ├── FreeSerifItalic12pt7b.h │ │ │ ├── FreeSerifItalic18pt7b.h │ │ │ ├── FreeSerifItalic24pt7b.h │ │ │ ├── FreeSerifItalic9pt7b.h │ │ │ ├── Org_01.h │ │ │ ├── Picopixel.h │ │ │ ├── Tiny3x3a2pt7b.h │ │ │ └── TomThumb.h │ │ ├── README.md │ │ ├── examples │ │ │ ├── GFXcanvas │ │ │ │ ├── GFXcanvas.ino │ │ │ │ ├── GFXcanvasSerialDemo.cpp │ │ │ │ └── GFXcanvasSerialDemo.h │ │ │ └── mock_ili9341 │ │ │ │ └── mock_ili9341.ino │ │ ├── fontconvert │ │ │ ├── Makefile │ │ │ ├── fontconvert.c │ │ │ ├── fontconvert_win.md │ │ │ └── makefonts.sh │ │ ├── gfxfont.h │ │ ├── glcdfont.c │ │ ├── library.properties │ │ └── license.txt │ ├── Adafruit_BusIO │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── Adafruit_BusIO_Register.cpp │ │ ├── Adafruit_BusIO_Register.h │ │ ├── Adafruit_I2CDevice.cpp │ │ ├── Adafruit_I2CDevice.h │ │ ├── Adafruit_I2CRegister.h │ │ ├── Adafruit_SPIDevice.cpp │ │ ├── Adafruit_SPIDevice.h │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── i2c_address_detect │ │ │ │ └── i2c_address_detect.ino │ │ │ ├── i2c_readwrite │ │ │ │ └── i2c_readwrite.ino │ │ │ ├── i2c_registers │ │ │ │ └── i2c_registers.ino │ │ │ ├── i2corspi_register │ │ │ │ └── i2corspi_register.ino │ │ │ ├── spi_modetest │ │ │ │ └── spi_modetest.ino │ │ │ ├── spi_readwrite │ │ │ │ └── spi_readwrite.ino │ │ │ ├── spi_register_bits │ │ │ │ └── spi_register_bits.ino │ │ │ └── spi_registers │ │ │ │ └── spi_registers.ino │ │ └── library.properties │ ├── Adafruit_SSD1306 │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ └── workflows │ │ │ │ └── githubci.yml │ │ ├── .gitignore │ │ ├── Adafruit_SSD1306.cpp │ │ ├── Adafruit_SSD1306.h │ │ ├── README.md │ │ ├── examples │ │ │ ├── OLED_featherwing │ │ │ │ └── OLED_featherwing.ino │ │ │ ├── ssd1306_128x32_i2c │ │ │ │ └── ssd1306_128x32_i2c.ino │ │ │ ├── ssd1306_128x32_spi │ │ │ │ └── ssd1306_128x32_spi.ino │ │ │ ├── ssd1306_128x64_i2c │ │ │ │ └── ssd1306_128x64_i2c.ino │ │ │ └── ssd1306_128x64_spi │ │ │ │ └── ssd1306_128x64_spi.ino │ │ ├── library.properties │ │ ├── license.txt │ │ ├── scripts │ │ │ ├── Makefile │ │ │ ├── make_splash.py │ │ │ ├── splash1.png │ │ │ └── splash2.png │ │ └── splash.h │ ├── ESP8266TimerInterrupt │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ └── workflows │ │ │ │ └── auto-github-actions.yml │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── examples │ │ │ ├── Argument_None │ │ │ │ └── Argument_None.ino │ │ │ ├── Change_Interval │ │ │ │ └── Change_Interval.ino │ │ │ ├── ISR_16_Timers_Array │ │ │ │ └── ISR_16_Timers_Array.ino │ │ │ ├── ISR_16_Timers_Array_Complex │ │ │ │ └── ISR_16_Timers_Array_Complex.ino │ │ │ ├── ISR_RPM_Measure │ │ │ │ └── ISR_RPM_Measure.ino │ │ │ ├── ISR_Switch │ │ │ │ └── ISR_Switch.ino │ │ │ ├── ISR_Timer_4_Switches │ │ │ │ └── ISR_Timer_4_Switches.ino │ │ │ ├── ISR_Timer_Complex │ │ │ │ └── ISR_Timer_Complex.ino │ │ │ ├── ISR_Timer_Switch │ │ │ │ └── ISR_Timer_Switch.ino │ │ │ ├── ISR_Timer_Switches │ │ │ │ └── ISR_Timer_Switches.ino │ │ │ ├── RPM_Measure │ │ │ │ └── RPM_Measure.ino │ │ │ ├── SwitchDebounce │ │ │ │ └── SwitchDebounce.ino │ │ │ └── TimerInterruptTest │ │ │ │ └── TimerInterruptTest.ino │ │ ├── keywords.txt │ │ ├── library.json │ │ ├── library.properties │ │ ├── src │ │ │ ├── ESP8266TimerInterrupt.h │ │ │ ├── ESP8266_ISR_Timer-Impl.h │ │ │ ├── ESP8266_ISR_Timer.h │ │ │ └── TimerInterrupt_Generic_Debug.h │ │ ├── src_cpp │ │ │ ├── ESP8266TimerInterrupt.h │ │ │ ├── ESP8266_ISR_Timer.cpp │ │ │ ├── ESP8266_ISR_Timer.h │ │ │ └── TimerInterrupt_Generic_Debug.h │ │ └── src_h │ │ │ ├── ESP8266TimerInterrupt.h │ │ │ ├── ESP8266_ISR_Timer-Impl.h │ │ │ ├── ESP8266_ISR_Timer.h │ │ │ └── TimerInterrupt_Generic_Debug.h │ └── README ├── partitions-no-ota.csv ├── pin_map.png ├── platformio.ini ├── src │ ├── buzzer.cpp │ ├── buzzer.h │ ├── common.h │ ├── knobs.cpp │ ├── knobs.h │ ├── main.cpp │ ├── main.h │ ├── max6675.cpp │ ├── max6675.h │ ├── pid.cpp │ ├── pid.h │ ├── surface.cpp │ └── surface.h └── test │ └── README ├── Tool ├── HeatPlatform_tool.py └── esptool │ ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug-report-no-hardware.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── issue-with-attached-hardware.md │ └── pull_request_template.md │ ├── .gitlab-ci.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── esp_rfc2217_server.py │ ├── espefuse.py │ ├── espressif │ ├── __init__.py │ └── efuse │ │ ├── __init__.py │ │ ├── base_fields.py │ │ ├── base_operations.py │ │ ├── emulate_efuse_controller_base.py │ │ ├── esp32 │ │ ├── __init__.py │ │ ├── emulate_efuse_controller.py │ │ ├── fields.py │ │ ├── mem_definition.py │ │ └── operations.py │ │ ├── esp32c3 │ │ ├── __init__.py │ │ ├── emulate_efuse_controller.py │ │ ├── fields.py │ │ ├── mem_definition.py │ │ └── operations.py │ │ ├── esp32s2 │ │ ├── __init__.py │ │ ├── emulate_efuse_controller.py │ │ ├── fields.py │ │ ├── mem_definition.py │ │ └── operations.py │ │ ├── esp32s3beta2 │ │ ├── __init__.py │ │ ├── emulate_efuse_controller.py │ │ ├── fields.py │ │ ├── mem_definition.py │ │ └── operations.py │ │ ├── mem_definition_base.py │ │ └── util.py │ ├── espsecure.py │ ├── esptool.py │ ├── flasher_stub │ ├── Makefile │ ├── README.md │ ├── compare_stubs.py │ ├── esptool_test_stub.py │ ├── include │ │ ├── miniz.h │ │ ├── rom_functions.h │ │ ├── slip.h │ │ ├── soc_support.h │ │ ├── stub_commands.h │ │ ├── stub_flasher.h │ │ ├── stub_io.h │ │ └── stub_write_flash.h │ ├── ld │ │ ├── rom_32.ld │ │ ├── rom_32c3.ld │ │ ├── rom_32s2.ld │ │ ├── rom_32s3.ld │ │ ├── rom_8266.ld │ │ ├── stub_32.ld │ │ ├── stub_32c3.ld │ │ ├── stub_32s2.ld │ │ ├── stub_32s3.ld │ │ └── stub_8266.ld │ ├── miniz.c │ ├── run_tests_with_stub.sh │ ├── slip.c │ ├── stub_commands.c │ ├── stub_flasher.c │ ├── stub_io.c │ ├── stub_write_flash.c │ └── wrap_stub.py │ ├── setup.cfg │ ├── setup.py │ └── test │ ├── README.md │ ├── ci │ ├── multirun_with_pyenv.sh │ ├── run_test_on_chips_parallel.sh │ └── setup_ci_build_env.sh │ ├── ecdsa_secure_boot_signing_key2.pem │ ├── elf2image │ ├── esp32-app-cust-ver-info.elf │ ├── esp32-app-template.elf │ ├── esp32-bootloader.elf │ ├── esp32-too-many-sections.elf │ ├── esp8266-nonossdkv12-example.elf │ ├── esp8266-nonossdkv20-at-v2.elf │ ├── esp8266-nonosssdk20-iotdemo.elf │ └── esp8266-openrtos-blink-v2.elf │ ├── images │ ├── aes_key.bin │ ├── bootloader_esp32.bin │ ├── bootloader_esp32c3.bin │ ├── bootloader_esp32s2.bin │ ├── bootloader_esp32s3.bin │ ├── efuse │ │ ├── 128bit │ │ ├── 192bit │ │ ├── 192bit_1 │ │ ├── 192bit_2 │ │ ├── 224bit │ │ ├── 256bit │ │ ├── 256bit_1 │ │ └── 256bit_2 │ ├── esp8266_deepsleep.bin │ ├── esp8266_sdk │ │ ├── 4096_user1.bin │ │ ├── blank.bin │ │ ├── boot_v1.4(b1).bin │ │ └── esp_init_data_default.bin │ ├── fifty_kb.bin │ ├── helloworld-esp32.bin │ ├── helloworld-esp32_edit.bin │ ├── helloworld-esp8266.bin │ ├── nodemcu-master-7-modules-2017-01-19-11-10-03-integer.bin │ ├── one_kb.bin │ ├── one_kb_all_ef.bin │ ├── one_mb.bin │ ├── one_mb_zeroes.bin │ ├── onebyte.bin │ ├── partitions_singleapp.bin │ ├── sector.bin │ ├── unaligned.bin │ └── zerolength.bin │ ├── secure_images │ ├── 256bit_iv.bin │ ├── 256bit_key.bin │ ├── bootloader-encrypted-conf0.bin │ ├── bootloader-encrypted-conf3.bin │ ├── bootloader-encrypted-conf9.bin │ ├── bootloader-encrypted-confc.bin │ ├── bootloader-encrypted.bin │ ├── bootloader.bin │ ├── bootloader_digested.bin │ ├── bootloader_multi_signed_v2.bin │ ├── bootloader_signed.bin │ ├── bootloader_signed_v2.bin │ ├── bootloader_unsigned_v2.bin │ ├── digest_iv.bin │ ├── ecdsa_secure_boot_signing_key.pem │ ├── ecdsa_secure_boot_signing_key2.pem │ ├── ecdsa_secure_boot_signing_key_pkcs8.pem │ ├── ecdsa_secure_boot_signing_pubkey.pem │ ├── ecdsa_secure_boot_signing_pubkey2.pem │ ├── ef-flashencryption-key.bin │ ├── hello-world-signed-encrypted.bin │ ├── hello-world-signed.bin │ ├── rsa_public_key_digest.bin │ ├── rsa_secure_boot_signing_key.pem │ ├── rsa_secure_boot_signing_key2.pem │ ├── rsa_secure_boot_signing_key3.pem │ ├── rsa_secure_boot_signing_key4.pem │ ├── rsa_secure_boot_signing_pubkey.pem │ ├── rsa_secure_boot_signing_pubkey2.pem │ └── rsa_secure_boot_signing_pubkey4.pem │ ├── test_espefuse.py │ ├── test_espefuse_host.py │ ├── test_espsecure.py │ ├── test_esptool.py │ └── test_imagegen.py ├── update_log.md └── webrepl-ctrl.zip /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Data/ 2 | ESP8266_MicroPython/ 3 | webrepl-master/ -------------------------------------------------------------------------------- /Hardware/HeatPlatform.PcbLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/HeatPlatform.PcbLib -------------------------------------------------------------------------------- /Hardware/HeatPlatform.SchLib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/HeatPlatform.SchLib -------------------------------------------------------------------------------- /Hardware/HeatPlatform_SMT.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/HeatPlatform_SMT.PrjPcb -------------------------------------------------------------------------------- /Hardware/HeatPlatform_SMT_V1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/HeatPlatform_SMT_V1.0.pdf -------------------------------------------------------------------------------- /Hardware/HeatPlatform_V1.1.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/HeatPlatform_V1.1.PcbDoc -------------------------------------------------------------------------------- /Hardware/HeatPlatform_V1.1.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/HeatPlatform_V1.1.SchDoc -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Hardware/README.md -------------------------------------------------------------------------------- /Image/Back_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/Back_16x16.BMP -------------------------------------------------------------------------------- /Image/CursorImage_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/CursorImage_16x16.BMP -------------------------------------------------------------------------------- /Image/CursorImage_8x8.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/CursorImage_8x8.BMP -------------------------------------------------------------------------------- /Image/Curve_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/Curve_16x16.BMP -------------------------------------------------------------------------------- /Image/EC11_sequential.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/EC11_sequential.jpg -------------------------------------------------------------------------------- /Image/HeatPlatform_Entity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/HeatPlatform_Entity.jpg -------------------------------------------------------------------------------- /Image/HeatPlatform_PCB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/HeatPlatform_PCB.jpg -------------------------------------------------------------------------------- /Image/HeatPlatform_PCB_Back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/HeatPlatform_PCB_Back.jpg -------------------------------------------------------------------------------- /Image/Heat_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/Heat_16x16.BMP -------------------------------------------------------------------------------- /Image/Info_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/Info_16x16.BMP -------------------------------------------------------------------------------- /Image/Knobs_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/Knobs_16x16.BMP -------------------------------------------------------------------------------- /Image/PID_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/PID_16x16.BMP -------------------------------------------------------------------------------- /Image/Set_16x16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/Set_16x16.bmp -------------------------------------------------------------------------------- /Image/UNUnCursorImage_16x16.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/UNUnCursorImage_16x16.BMP -------------------------------------------------------------------------------- /Image/UnCursorImage_8x8.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/UnCursorImage_8x8.BMP -------------------------------------------------------------------------------- /Image/升温32x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/升温32x32.bmp -------------------------------------------------------------------------------- /Image/发热丝-弃.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/发热丝-弃.bmp -------------------------------------------------------------------------------- /Image/错误32x32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Image/错误32x32.bmp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/HeatPlaform_SMT.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Model/HeatPlaform_SMT.stl -------------------------------------------------------------------------------- /Model/HeatPlatform_SMT_PCB.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Model/HeatPlatform_SMT_PCB.step -------------------------------------------------------------------------------- /Model/模型说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Model/模型说明.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/README.md -------------------------------------------------------------------------------- /Software/Firmware/esp8266-20210202-v1.14.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/Firmware/esp8266-20210202-v1.14.bin -------------------------------------------------------------------------------- /Software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/README.md -------------------------------------------------------------------------------- /Software/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/config.json -------------------------------------------------------------------------------- /Software/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/font.py -------------------------------------------------------------------------------- /Software/knobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/knobs.py -------------------------------------------------------------------------------- /Software/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/main.py -------------------------------------------------------------------------------- /Software/max6675.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/max6675.py -------------------------------------------------------------------------------- /Software/microWebSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/microWebSocket.py -------------------------------------------------------------------------------- /Software/microWebSrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/microWebSrv.py -------------------------------------------------------------------------------- /Software/pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/pid.py -------------------------------------------------------------------------------- /Software/ssd1306.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/ssd1306.py -------------------------------------------------------------------------------- /Software/ssd1306_esp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/ssd1306_esp.py -------------------------------------------------------------------------------- /Software/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/surface.py -------------------------------------------------------------------------------- /Software/wifi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software/wifi.py -------------------------------------------------------------------------------- /Software_C/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/.gitignore -------------------------------------------------------------------------------- /Software_C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/README.md -------------------------------------------------------------------------------- /Software_C/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/include/README -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/.gitignore -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_GFX.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_GrayOLED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_GrayOLED.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_GrayOLED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_GrayOLED.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_SPITFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_SPITFT.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_SPITFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_SPITFT.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Adafruit_SPITFT_Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Adafruit_SPITFT_Macros.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/Org_01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/Org_01.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/Picopixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/Picopixel.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/Tiny3x3a2pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/Tiny3x3a2pt7b.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/Fonts/TomThumb.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/README.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/examples/GFXcanvas/GFXcanvas.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/examples/GFXcanvas/GFXcanvas.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/examples/GFXcanvas/GFXcanvasSerialDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/examples/GFXcanvas/GFXcanvasSerialDemo.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/examples/GFXcanvas/GFXcanvasSerialDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/examples/GFXcanvas/GFXcanvasSerialDemo.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/examples/mock_ili9341/mock_ili9341.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/examples/mock_ili9341/mock_ili9341.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/fontconvert/Makefile -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/fontconvert/fontconvert_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/fontconvert/fontconvert_win.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/gfxfont.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/glcdfont.c -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/library.properties -------------------------------------------------------------------------------- /Software_C/lib/Adafruit-GFX-Library/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit-GFX-Library/license.txt -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_BusIO_Register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_BusIO_Register.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_BusIO_Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_BusIO_Register.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_I2CDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_I2CDevice.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_I2CDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_I2CDevice.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_I2CRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_I2CRegister.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_SPIDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_SPIDevice.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/Adafruit_SPIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/Adafruit_SPIDevice.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/LICENSE -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/README.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/i2c_address_detect/i2c_address_detect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/i2c_address_detect/i2c_address_detect.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/i2c_readwrite/i2c_readwrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/i2c_readwrite/i2c_readwrite.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/i2c_registers/i2c_registers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/i2c_registers/i2c_registers.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/i2corspi_register/i2corspi_register.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/i2corspi_register/i2corspi_register.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/spi_modetest/spi_modetest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/spi_modetest/spi_modetest.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/spi_readwrite/spi_readwrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/spi_readwrite/spi_readwrite.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/spi_register_bits/spi_register_bits.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/spi_register_bits/spi_register_bits.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/examples/spi_registers/spi_registers.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/examples/spi_registers/spi_registers.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_BusIO/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_BusIO/library.properties -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/.github/workflows/githubci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/.github/workflows/githubci.yml -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/.gitignore: -------------------------------------------------------------------------------- 1 | # Our handy .gitignore for automation ease 2 | Doxyfile* 3 | doxygen_sqlite3.db 4 | html 5 | -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/Adafruit_SSD1306.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/Adafruit_SSD1306.cpp -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/Adafruit_SSD1306.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/Adafruit_SSD1306.h -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/README.md -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/examples/OLED_featherwing/OLED_featherwing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/examples/OLED_featherwing/OLED_featherwing.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x32_i2c/ssd1306_128x32_i2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x32_i2c/ssd1306_128x32_i2c.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x32_spi/ssd1306_128x32_spi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x32_spi/ssd1306_128x32_spi.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x64_i2c/ssd1306_128x64_i2c.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x64_i2c/ssd1306_128x64_i2c.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x64_spi/ssd1306_128x64_spi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/examples/ssd1306_128x64_spi/ssd1306_128x64_spi.ino -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/library.properties -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/license.txt -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/scripts/Makefile -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/scripts/make_splash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/scripts/make_splash.py -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/scripts/splash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/scripts/splash1.png -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/scripts/splash2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/scripts/splash2.png -------------------------------------------------------------------------------- /Software_C/lib/Adafruit_SSD1306/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/Adafruit_SSD1306/splash.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/.github/workflows/auto-github-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/.github/workflows/auto-github-actions.yml -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/.gitignore -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/CONTRIBUTING.md -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/LICENSE -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/README.md -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/Argument_None/Argument_None.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/Argument_None/Argument_None.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/Change_Interval/Change_Interval.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/Change_Interval/Change_Interval.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_16_Timers_Array/ISR_16_Timers_Array.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_16_Timers_Array/ISR_16_Timers_Array.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_RPM_Measure/ISR_RPM_Measure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_RPM_Measure/ISR_RPM_Measure.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Switch/ISR_Switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Switch/ISR_Switch.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_4_Switches/ISR_Timer_4_Switches.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_4_Switches/ISR_Timer_4_Switches.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_Complex/ISR_Timer_Complex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_Complex/ISR_Timer_Complex.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_Switch/ISR_Timer_Switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_Switch/ISR_Timer_Switch.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_Switches/ISR_Timer_Switches.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/ISR_Timer_Switches/ISR_Timer_Switches.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/RPM_Measure/RPM_Measure.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/RPM_Measure/RPM_Measure.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/SwitchDebounce/SwitchDebounce.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/SwitchDebounce/SwitchDebounce.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/examples/TimerInterruptTest/TimerInterruptTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/examples/TimerInterruptTest/TimerInterruptTest.ino -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/keywords.txt -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/library.json -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/library.properties -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src/ESP8266TimerInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src/ESP8266TimerInterrupt.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src/ESP8266_ISR_Timer-Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src/ESP8266_ISR_Timer-Impl.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src/ESP8266_ISR_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src/ESP8266_ISR_Timer.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src/TimerInterrupt_Generic_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src/TimerInterrupt_Generic_Debug.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_cpp/ESP8266TimerInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_cpp/ESP8266TimerInterrupt.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_cpp/ESP8266_ISR_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_cpp/ESP8266_ISR_Timer.cpp -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_cpp/ESP8266_ISR_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_cpp/ESP8266_ISR_Timer.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_cpp/TimerInterrupt_Generic_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_cpp/TimerInterrupt_Generic_Debug.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_h/ESP8266TimerInterrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_h/ESP8266TimerInterrupt.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_h/ESP8266_ISR_Timer-Impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_h/ESP8266_ISR_Timer-Impl.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_h/ESP8266_ISR_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_h/ESP8266_ISR_Timer.h -------------------------------------------------------------------------------- /Software_C/lib/ESP8266TimerInterrupt/src_h/TimerInterrupt_Generic_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/ESP8266TimerInterrupt/src_h/TimerInterrupt_Generic_Debug.h -------------------------------------------------------------------------------- /Software_C/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/lib/README -------------------------------------------------------------------------------- /Software_C/partitions-no-ota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/partitions-no-ota.csv -------------------------------------------------------------------------------- /Software_C/pin_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/pin_map.png -------------------------------------------------------------------------------- /Software_C/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/platformio.ini -------------------------------------------------------------------------------- /Software_C/src/buzzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/buzzer.cpp -------------------------------------------------------------------------------- /Software_C/src/buzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/buzzer.h -------------------------------------------------------------------------------- /Software_C/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/common.h -------------------------------------------------------------------------------- /Software_C/src/knobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/knobs.cpp -------------------------------------------------------------------------------- /Software_C/src/knobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/knobs.h -------------------------------------------------------------------------------- /Software_C/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/main.cpp -------------------------------------------------------------------------------- /Software_C/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/main.h -------------------------------------------------------------------------------- /Software_C/src/max6675.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/max6675.cpp -------------------------------------------------------------------------------- /Software_C/src/max6675.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/max6675.h -------------------------------------------------------------------------------- /Software_C/src/pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/pid.cpp -------------------------------------------------------------------------------- /Software_C/src/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/pid.h -------------------------------------------------------------------------------- /Software_C/src/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/surface.cpp -------------------------------------------------------------------------------- /Software_C/src/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/src/surface.h -------------------------------------------------------------------------------- /Software_C/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Software_C/test/README -------------------------------------------------------------------------------- /Tool/HeatPlatform_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/HeatPlatform_tool.py -------------------------------------------------------------------------------- /Tool/esptool/.github/ISSUE_TEMPLATE/bug-report-no-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/.github/ISSUE_TEMPLATE/bug-report-no-hardware.md -------------------------------------------------------------------------------- /Tool/esptool/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /Tool/esptool/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /Tool/esptool/.github/ISSUE_TEMPLATE/issue-with-attached-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/.github/ISSUE_TEMPLATE/issue-with-attached-hardware.md -------------------------------------------------------------------------------- /Tool/esptool/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/.github/pull_request_template.md -------------------------------------------------------------------------------- /Tool/esptool/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/.gitlab-ci.yml -------------------------------------------------------------------------------- /Tool/esptool/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/CONTRIBUTING.md -------------------------------------------------------------------------------- /Tool/esptool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/LICENSE -------------------------------------------------------------------------------- /Tool/esptool/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/MANIFEST.in -------------------------------------------------------------------------------- /Tool/esptool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/README.md -------------------------------------------------------------------------------- /Tool/esptool/esp_rfc2217_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/esp_rfc2217_server.py -------------------------------------------------------------------------------- /Tool/esptool/espefuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espefuse.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/base_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/base_fields.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/base_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/base_operations.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/emulate_efuse_controller_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/emulate_efuse_controller_base.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32/__init__.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32/emulate_efuse_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32/emulate_efuse_controller.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32/fields.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32/mem_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32/mem_definition.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32/operations.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32c3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32c3/__init__.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32c3/emulate_efuse_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32c3/emulate_efuse_controller.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32c3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32c3/fields.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32c3/mem_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32c3/mem_definition.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32c3/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32c3/operations.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s2/__init__.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s2/emulate_efuse_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s2/emulate_efuse_controller.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s2/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s2/fields.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s2/mem_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s2/mem_definition.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s2/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s2/operations.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s3beta2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s3beta2/__init__.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s3beta2/emulate_efuse_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s3beta2/emulate_efuse_controller.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s3beta2/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s3beta2/fields.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s3beta2/mem_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s3beta2/mem_definition.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/esp32s3beta2/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/esp32s3beta2/operations.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/mem_definition_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/mem_definition_base.py -------------------------------------------------------------------------------- /Tool/esptool/espressif/efuse/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espressif/efuse/util.py -------------------------------------------------------------------------------- /Tool/esptool/espsecure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/espsecure.py -------------------------------------------------------------------------------- /Tool/esptool/esptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/esptool.py -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/Makefile -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/README.md -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/compare_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/compare_stubs.py -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/esptool_test_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/esptool_test_stub.py -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/miniz.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/rom_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/rom_functions.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/slip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/slip.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/soc_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/soc_support.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/stub_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/stub_commands.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/stub_flasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/stub_flasher.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/stub_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/stub_io.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/include/stub_write_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/include/stub_write_flash.h -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/rom_32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/rom_32.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/rom_32c3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/rom_32c3.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/rom_32s2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/rom_32s2.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/rom_32s3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/rom_32s3.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/rom_8266.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/rom_8266.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/stub_32.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/stub_32.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/stub_32c3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/stub_32c3.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/stub_32s2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/stub_32s2.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/stub_32s3.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/stub_32s3.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/ld/stub_8266.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/ld/stub_8266.ld -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/miniz.c -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/run_tests_with_stub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/run_tests_with_stub.sh -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/slip.c -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/stub_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/stub_commands.c -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/stub_flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/stub_flasher.c -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/stub_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/stub_io.c -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/stub_write_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/stub_write_flash.c -------------------------------------------------------------------------------- /Tool/esptool/flasher_stub/wrap_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/flasher_stub/wrap_stub.py -------------------------------------------------------------------------------- /Tool/esptool/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/setup.cfg -------------------------------------------------------------------------------- /Tool/esptool/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/setup.py -------------------------------------------------------------------------------- /Tool/esptool/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/README.md -------------------------------------------------------------------------------- /Tool/esptool/test/ci/multirun_with_pyenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/ci/multirun_with_pyenv.sh -------------------------------------------------------------------------------- /Tool/esptool/test/ci/run_test_on_chips_parallel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/ci/run_test_on_chips_parallel.sh -------------------------------------------------------------------------------- /Tool/esptool/test/ci/setup_ci_build_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/ci/setup_ci_build_env.sh -------------------------------------------------------------------------------- /Tool/esptool/test/ecdsa_secure_boot_signing_key2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/ecdsa_secure_boot_signing_key2.pem -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp32-app-cust-ver-info.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp32-app-cust-ver-info.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp32-app-template.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp32-app-template.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp32-bootloader.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp32-bootloader.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp32-too-many-sections.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp32-too-many-sections.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp8266-nonossdkv12-example.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp8266-nonossdkv12-example.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp8266-nonossdkv20-at-v2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp8266-nonossdkv20-at-v2.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp8266-nonosssdk20-iotdemo.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp8266-nonosssdk20-iotdemo.elf -------------------------------------------------------------------------------- /Tool/esptool/test/elf2image/esp8266-openrtos-blink-v2.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/elf2image/esp8266-openrtos-blink-v2.elf -------------------------------------------------------------------------------- /Tool/esptool/test/images/aes_key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/aes_key.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/bootloader_esp32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/bootloader_esp32.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/bootloader_esp32c3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/bootloader_esp32c3.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/bootloader_esp32s2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/bootloader_esp32s2.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/bootloader_esp32s3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/bootloader_esp32s3.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/128bit: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/192bit: -------------------------------------------------------------------------------- 1 | c`V6vNc -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/192bit_1: -------------------------------------------------------------------------------- 1 |  2 | ! -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/192bit_2: -------------------------------------------------------------------------------- 1 | " 2 | " -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/224bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/efuse/224bit -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/256bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/efuse/256bit -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/256bit_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/efuse/256bit_1 -------------------------------------------------------------------------------- /Tool/esptool/test/images/efuse/256bit_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/efuse/256bit_2 -------------------------------------------------------------------------------- /Tool/esptool/test/images/esp8266_deepsleep.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/esp8266_deepsleep.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/esp8266_sdk/4096_user1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/esp8266_sdk/4096_user1.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/esp8266_sdk/blank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/esp8266_sdk/blank.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/esp8266_sdk/boot_v1.4(b1).bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/esp8266_sdk/boot_v1.4(b1).bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/esp8266_sdk/esp_init_data_default.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/esp8266_sdk/esp_init_data_default.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/fifty_kb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/fifty_kb.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/helloworld-esp32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/helloworld-esp32.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/helloworld-esp32_edit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/helloworld-esp32_edit.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/helloworld-esp8266.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/helloworld-esp8266.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/nodemcu-master-7-modules-2017-01-19-11-10-03-integer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/nodemcu-master-7-modules-2017-01-19-11-10-03-integer.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/one_kb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/one_kb.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/one_kb_all_ef.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/one_kb_all_ef.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/one_mb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/one_mb.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/one_mb_zeroes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/one_mb_zeroes.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/onebyte.bin: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /Tool/esptool/test/images/partitions_singleapp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/partitions_singleapp.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/sector.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/sector.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/unaligned.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/images/unaligned.bin -------------------------------------------------------------------------------- /Tool/esptool/test/images/zerolength.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/256bit_iv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/256bit_iv.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/256bit_key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/256bit_key.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader-encrypted-conf0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader-encrypted-conf0.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader-encrypted-conf3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader-encrypted-conf3.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader-encrypted-conf9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader-encrypted-conf9.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader-encrypted-confc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader-encrypted-confc.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader-encrypted.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader-encrypted.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader_digested.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader_digested.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader_multi_signed_v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader_multi_signed_v2.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader_signed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader_signed.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader_signed_v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader_signed_v2.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/bootloader_unsigned_v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/bootloader_unsigned_v2.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/digest_iv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/digest_iv.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_key.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_key2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_key2.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_key_pkcs8.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_key_pkcs8.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_pubkey.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_pubkey2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/ecdsa_secure_boot_signing_pubkey2.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/ef-flashencryption-key.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/ef-flashencryption-key.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/hello-world-signed-encrypted.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/hello-world-signed-encrypted.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/hello-world-signed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/hello-world-signed.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_public_key_digest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_public_key_digest.bin -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_key.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_key2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_key2.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_key3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_key3.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_key4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_key4.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_pubkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_pubkey.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_pubkey2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_pubkey2.pem -------------------------------------------------------------------------------- /Tool/esptool/test/secure_images/rsa_secure_boot_signing_pubkey4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/secure_images/rsa_secure_boot_signing_pubkey4.pem -------------------------------------------------------------------------------- /Tool/esptool/test/test_espefuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/test_espefuse.py -------------------------------------------------------------------------------- /Tool/esptool/test/test_espefuse_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/test_espefuse_host.py -------------------------------------------------------------------------------- /Tool/esptool/test/test_espsecure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/test_espsecure.py -------------------------------------------------------------------------------- /Tool/esptool/test/test_esptool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/test_esptool.py -------------------------------------------------------------------------------- /Tool/esptool/test/test_imagegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/Tool/esptool/test/test_imagegen.py -------------------------------------------------------------------------------- /update_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/update_log.md -------------------------------------------------------------------------------- /webrepl-ctrl.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClimbSnail/HeatPlatform_SMT/HEAD/webrepl-ctrl.zip --------------------------------------------------------------------------------