├── .gitignore ├── README.md ├── documents ├── AY-AT-J1.3.pdf ├── comparative_table_for_clone_tester.pdf ├── ctester-1.39m.English.pdf ├── ctester-1.42m.pdf ├── datasheet_ht7550.pdf ├── datasheet_lm4040-n.pdf ├── datasheet_mcp1702.pdf ├── datasheet_tl431a.pdf ├── transistor tester-user-manual.pdf ├── transistor-tester-assembly-instructions.pdf └── ttester-1.13k.English.pdf ├── firmware ├── 1.39m │ ├── Makefile │ ├── config.h │ └── config_328.h ├── 1.42m │ ├── modified │ │ ├── ComponentTester.eep │ │ ├── ComponentTester.hex │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.h │ │ └── config_328.h │ └── unmodified │ │ ├── ComponentTester.eep │ │ ├── ComponentTester.hex │ │ ├── Makefile │ │ ├── README.md │ │ ├── config.h │ │ └── config_328.h ├── ComponentTester.cfg ├── README.md └── original │ ├── ComponentTester.cfg │ ├── ComponentTester.eep │ ├── ComponentTester.hex │ └── README.md └── resources ├── AY-AT-J1.3.png ├── atmega328-icsp.png ├── ay-at-icsp-pins.jpg ├── ay-at-no-screen.jpg ├── ay-at-with-screen.jpg ├── gm328-kit.jpg └── icsp-connection.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/README.md -------------------------------------------------------------------------------- /documents/AY-AT-J1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/AY-AT-J1.3.pdf -------------------------------------------------------------------------------- /documents/comparative_table_for_clone_tester.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/comparative_table_for_clone_tester.pdf -------------------------------------------------------------------------------- /documents/ctester-1.39m.English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/ctester-1.39m.English.pdf -------------------------------------------------------------------------------- /documents/ctester-1.42m.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/ctester-1.42m.pdf -------------------------------------------------------------------------------- /documents/datasheet_ht7550.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/datasheet_ht7550.pdf -------------------------------------------------------------------------------- /documents/datasheet_lm4040-n.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/datasheet_lm4040-n.pdf -------------------------------------------------------------------------------- /documents/datasheet_mcp1702.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/datasheet_mcp1702.pdf -------------------------------------------------------------------------------- /documents/datasheet_tl431a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/datasheet_tl431a.pdf -------------------------------------------------------------------------------- /documents/transistor tester-user-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/transistor tester-user-manual.pdf -------------------------------------------------------------------------------- /documents/transistor-tester-assembly-instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/transistor-tester-assembly-instructions.pdf -------------------------------------------------------------------------------- /documents/ttester-1.13k.English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/documents/ttester-1.13k.English.pdf -------------------------------------------------------------------------------- /firmware/1.39m/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.39m/Makefile -------------------------------------------------------------------------------- /firmware/1.39m/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.39m/config.h -------------------------------------------------------------------------------- /firmware/1.39m/config_328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.39m/config_328.h -------------------------------------------------------------------------------- /firmware/1.42m/modified/ComponentTester.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/modified/ComponentTester.eep -------------------------------------------------------------------------------- /firmware/1.42m/modified/ComponentTester.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/modified/ComponentTester.hex -------------------------------------------------------------------------------- /firmware/1.42m/modified/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/modified/Makefile -------------------------------------------------------------------------------- /firmware/1.42m/modified/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/modified/README.md -------------------------------------------------------------------------------- /firmware/1.42m/modified/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/modified/config.h -------------------------------------------------------------------------------- /firmware/1.42m/modified/config_328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/modified/config_328.h -------------------------------------------------------------------------------- /firmware/1.42m/unmodified/ComponentTester.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/unmodified/ComponentTester.eep -------------------------------------------------------------------------------- /firmware/1.42m/unmodified/ComponentTester.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/unmodified/ComponentTester.hex -------------------------------------------------------------------------------- /firmware/1.42m/unmodified/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/unmodified/Makefile -------------------------------------------------------------------------------- /firmware/1.42m/unmodified/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/unmodified/README.md -------------------------------------------------------------------------------- /firmware/1.42m/unmodified/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/unmodified/config.h -------------------------------------------------------------------------------- /firmware/1.42m/unmodified/config_328.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/1.42m/unmodified/config_328.h -------------------------------------------------------------------------------- /firmware/ComponentTester.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/ComponentTester.cfg -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/README.md -------------------------------------------------------------------------------- /firmware/original/ComponentTester.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/original/ComponentTester.cfg -------------------------------------------------------------------------------- /firmware/original/ComponentTester.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/original/ComponentTester.eep -------------------------------------------------------------------------------- /firmware/original/ComponentTester.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/original/ComponentTester.hex -------------------------------------------------------------------------------- /firmware/original/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/firmware/original/README.md -------------------------------------------------------------------------------- /resources/AY-AT-J1.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/AY-AT-J1.3.png -------------------------------------------------------------------------------- /resources/atmega328-icsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/atmega328-icsp.png -------------------------------------------------------------------------------- /resources/ay-at-icsp-pins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/ay-at-icsp-pins.jpg -------------------------------------------------------------------------------- /resources/ay-at-no-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/ay-at-no-screen.jpg -------------------------------------------------------------------------------- /resources/ay-at-with-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/ay-at-with-screen.jpg -------------------------------------------------------------------------------- /resources/gm328-kit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/gm328-kit.jpg -------------------------------------------------------------------------------- /resources/icsp-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blurpy/transistor-tester/HEAD/resources/icsp-connection.png --------------------------------------------------------------------------------