├── .gitignore ├── Iron_example_image.png ├── LICENSE ├── README.md ├── STC8H-datasheet_en.pdf ├── flashing_pinout.jpg ├── include └── README ├── lib └── README ├── logic_analyzer_reads ├── Logic_analyzer_KingstVIS_OLED_stock_log.kvdat └── OLED_i2c_log_stock.txt ├── pinout_stc.png ├── platformio.ini ├── src ├── STC8xxxx_SDCC.h ├── font.h └── main.c ├── stc-isp-v6.91K.exe └── test └── README /.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode -------------------------------------------------------------------------------- /Iron_example_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/Iron_example_image.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/README.md -------------------------------------------------------------------------------- /STC8H-datasheet_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/STC8H-datasheet_en.pdf -------------------------------------------------------------------------------- /flashing_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/flashing_pinout.jpg -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/include/README -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/lib/README -------------------------------------------------------------------------------- /logic_analyzer_reads/Logic_analyzer_KingstVIS_OLED_stock_log.kvdat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/logic_analyzer_reads/Logic_analyzer_KingstVIS_OLED_stock_log.kvdat -------------------------------------------------------------------------------- /logic_analyzer_reads/OLED_i2c_log_stock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/logic_analyzer_reads/OLED_i2c_log_stock.txt -------------------------------------------------------------------------------- /pinout_stc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/pinout_stc.png -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/STC8xxxx_SDCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/src/STC8xxxx_SDCC.h -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/src/font.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/src/main.c -------------------------------------------------------------------------------- /stc-isp-v6.91K.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/stc-isp-v6.91K.exe -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atc1441/ATC_stc_solder_iron/HEAD/test/README --------------------------------------------------------------------------------