9db9044bb19a373b9803f60abb0441d3bdebc47c
Board-dat/Board-DAT.md
| ... | ... | @@ -27,6 +27,8 @@ |
| 27 | 27 | ### CCO |
| 28 | 28 | - [[CCO3626-dat]] - [[CCO3627-dat]] - [[CCO3515-dat]] |
| 29 | 29 | |
| 30 | +- [[CCO3647-dat]] |
|
| 31 | + |
|
| 30 | 32 | ### CKI |
| 31 | 33 | - [[CKI1047-dat]] |
| 32 | 34 | |
| ... | ... | @@ -439,7 +441,7 @@ MT7688 |
| 439 | 441 | |
| 440 | 442 | [[servo-dat]] - [[SCU1030-DAT]] |
| 441 | 443 | |
| 442 | -- [[SCU1012-DAT]] - [[SCU1015-dat]] [[SCU1017-dat]] - [[SCU1033-DAT]] - [[SCU1035-DAT]] - [[SCU1038-DAT]] - [[SCU1041-DAT]] |
|
| 444 | +- [[SCU1012-DAT]] - [[SCU1015-dat]] [[SCU1017-dat]] - [[SCU1033-DAT]] - [[SCU1034-dat]] - [[SCU1035-DAT]] - [[SCU1038-DAT]] - [[SCU1041-DAT]] |
|
| 443 | 445 | |
| 444 | 446 | - [[SCU1010-dat]] |
| 445 | 447 |
Board-dat/CCO/CCO3647-dat/CCO3647-dat.md
| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | |
| 2 | 2 | # CCO3647 dat |
| 3 | 3 | |
| 4 | -- 5PCs Potentiometer, trim-pot, pot (for Amplifier, Speaker, 10K) |
|
| 4 | +- [5PCs Potentiometer, trim-pot, pot (for Amplifier, Speaker, 10K) ](https://www.electrodragon.com/product/5pcs-potentiometer-amplifier-speaker-10k/) |
|
| 5 | 5 | |
| 6 | 6 | |
| 7 | 7 |  |
Board-dat/DPR/DPR1045-dat/2023-12-13-14-39-13.png
| ... | ... | Binary files a/Board-dat/DPR/DPR1045-dat/2023-12-13-14-39-13.png and /dev/null differ |
Board-dat/DPR/DPR1045-dat/2025-06-30-18-03-06.png
| ... | ... | Binary files /dev/null and b/Board-dat/DPR/DPR1045-dat/2025-06-30-18-03-06.png differ |
Board-dat/DPR/DPR1045-dat/2025-06-30-18-13-12.png
| ... | ... | Binary files /dev/null and b/Board-dat/DPR/DPR1045-dat/2025-06-30-18-13-12.png differ |
Board-dat/DPR/DPR1045-dat/2025-06-30-18-16-32.png
| ... | ... | Binary files /dev/null and b/Board-dat/DPR/DPR1045-dat/2025-06-30-18-16-32.png differ |
Board-dat/DPR/DPR1045-dat/DPR1045-dat.md
| ... | ... | @@ -24,6 +24,8 @@ |
| 24 | 24 | |
| 25 | 25 | \* for programming pin \~ for lead out pin |
| 26 | 26 | |
| 27 | + |
|
| 28 | + |
|
| 27 | 29 | ## Board Map |
| 28 | 30 | |
| 29 | 31 |  |
| ... | ... | @@ -34,6 +36,11 @@ |
| 34 | 36 | - digitalWrite(3, HIGH); |
| 35 | 37 | - VCC / GND |
| 36 | 38 | |
| 39 | +## soldeing by yourself |
|
| 40 | + |
|
| 41 | + |
|
| 42 | + |
|
| 43 | + |
|
| 37 | 44 | ## Using Guide |
| 38 | 45 | |
| 39 | 46 | Flash Bootloader Programming Guide and Note |
| ... | ... | @@ -42,20 +49,42 @@ Flash Bootloader Programming Guide and Note |
| 42 | 49 | - Some version of ArduinoIDE is not working well, for example, 1.61, 1.00, etc, better version approved 1.05, 1.56-r2 |
| 43 | 50 | - Burn bootloader twice, sometimes it seems the arduinoIDE bug: the IC will fail on uploading sketch when moved to arduino board |
| 44 | 51 | |
| 45 | -- If you see the problem "programmer of out sync", get the easy solution here. [[arduinoISP-dat]] |
|
| 52 | +- If you see the problem "programmer of out sync", get the easy solution here. [[arduino-as-ISP-dat]] |
|
| 46 | 53 | - Find all the unofficial attiny board files here. [[attiny-dat]] |
| 47 | 54 | |
| 48 | -* upload arduino sketch using "programmer" options in the menu, DO NOT use "upload" button |
|
| 49 | -  |
|
| 55 | +setup |
|
| 56 | + |
|
| 57 | + |
|
| 58 | + |
|
| 59 | +upload arduino sketch using "upload using programmer" options in the menu, DO NOT use "upload" button |
|
| 50 | 60 | |
| 51 | -* Program hex file into target IC with AVRDUDESS |
|
| 52 | -  |
|
| 61 | + |
|
| 53 | 62 | |
| 54 | -## Demo with using Guide |
|
| 63 | +- mess uploading by [[AVRDUDE-dat]] |
|
| 64 | + |
|
| 65 | + |
|
| 66 | +## Demo with using Guide |
|
| 55 | 67 | |
| 56 | 68 | - [please see here. ](https://www.youtube.com/watch?v=6SlruQVLcK4) |
| 57 | 69 | |
| 70 | +blink PB3 == 3 |
|
| 71 | + |
|
| 72 | + void setup() { |
|
| 73 | + // initialize digital pin LED_BUILTIN as an output. |
|
| 74 | + pinMode(3, OUTPUT); |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + // the loop function runs over and over again forever |
|
| 78 | + void loop() { |
|
| 79 | + digitalWrite(3, HIGH); // turn the LED on (HIGH is the voltage level) |
|
| 80 | + delay(1000); // wait for a second |
|
| 81 | + digitalWrite(3, LOW); // turn the LED off by making the voltage LOW |
|
| 82 | + delay(1000); // wait for a second |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + |
|
| 86 | + |
|
| 58 | 87 | ## ref |
| 59 | 88 | |
| 60 | -- [[arduinoISP-dat]] |
|
| 89 | +- [[arduino-as-ISP-dat]] |
|
| 61 | 90 | - [[attiny-dat]] |
| ... | ... | \ No newline at end of file |
Board-dat/NID/NID1005-DAT/NID1005-DAT.md
| ... | ... | @@ -45,4 +45,6 @@ The arduino connection:<br /> |
| 45 | 45 | |
| 46 | 46 | - [[EM4100-dat]] - [[125khz-dat]] |
| 47 | 47 | |
| 48 | -- [[RFID-dat]] |
|
| ... | ... | \ No newline at end of file |
| 0 | +- [[RFID-dat]] |
|
| 1 | + |
|
| 2 | +- [[NID1005]] |
|
| ... | ... | \ No newline at end of file |
Board-dat/PMP/PMP1037-dat/PMP1037-dat.md
| ... | ... | @@ -12,6 +12,9 @@ RPI with a magnetic stand holder M2 [[pmp1036-dat]] |
| 12 | 12 |  |
| 13 | 13 | |
| 14 | 14 | |
| 15 | +- [[PCB-accesories-dat]] |
|
| 16 | + |
|
| 17 | + |
|
| 15 | 18 | |
| 16 | 19 | - [[screws-dat]] - [[magnet-dat]] |
| 17 | 20 |
Board-dat/SCU/SCU1034-dat.md
| ... | ... | @@ -0,0 +1,28 @@ |
| 1 | + |
|
| 2 | +# SCU1034-dat.md |
|
| 3 | + |
|
| 4 | +- [[TEC-12706-DAT]] |
|
| 5 | + |
|
| 6 | + |
|
| 7 | +## Specifications (TECI-12706-2) |
|
| 8 | + |
|
| 9 | +- **Chip Model:** TECI-12706-2 |
|
| 10 | +- **Dimensions:** 40 × 40 × 3.6 mm ±0.25 mm |
|
| 11 | +- **Maximum Temperature Difference:** 62°C / 62–63°C / 65–67°C / 67–69°C |
|
| 12 | +- **Maximum Voltage:** 15.8 V |
|
| 13 | +- **Recommended Voltage:** 12 V |
|
| 14 | +- **Assembly Pressure:** 85 N/cm² |
|
| 15 | +- **Maximum Cooling Power:** 51 W |
|
| 16 | +- **Maximum Current:** 6 A |
|
| 17 | +- **Operating Environment:** Temperature range -55°C to 83°C (Excessive ambient temperature will directly affect cooling efficiency) |
|
| 18 | +- **Sealing Process:** Sealed with 704 silicone rubber or epoxy resin around the edges |
|
| 19 | +- **Packaging Standard:** Foam box packaging; storage conditions: ambient temperature -10°C to 40°C |
|
| 20 | +- **Device Characteristics:** Red wire is positive, black wire is negative (side with text is the cooling side, side without text is the heat dissipation side) |
|
| 21 | +- **Single Unit Weight:** 21 g |
|
| 22 | +- **Wire Specifications:** Lead length 200–380 mm |
|
| 23 | + |
|
| 24 | + |
|
| 25 | + |
|
| 26 | +## ref |
|
| 27 | + |
|
| 28 | +- [[SCU1034]] |
|
| ... | ... | \ No newline at end of file |
Chip-dat/AVR-dat/attiny-dat/attiny-dat.md
| ... | ... | @@ -30,8 +30,19 @@ Key features: |
| 30 | 30 | |
| 31 | 31 | ## SDK |
| 32 | 32 | |
| 33 | -== https://github.com/MCUdude/MicroCore |
|
| 33 | +- [[arduino-boards-dat]] |
|
| 34 | 34 | |
| 35 | +== https://github.com/MCUdude/MicroCore == star 580 |
|
| 36 | + |
|
| 37 | +Enter the following URL in Additional Boards Manager URLs: |
|
| 38 | + |
|
| 39 | + https://mcudude.github.io/MicroCore/package_MCUdude_MicroCore_index.json |
|
| 40 | + |
|
| 41 | +- Open the Tools > Board > Boards Manager... menu item. |
|
| 42 | +- Wait for the platform indexes to finish downloading. |
|
| 43 | +- Scroll down until you see the MicroCore entry and click on it. |
|
| 44 | +- Click Install. |
|
| 45 | +- After installation is complete close the Boards Manager window. |
|
| 35 | 46 | |
| 36 | 47 | |
| 37 | 48 | - arduino attiny - http://code.google.com/p/arduino-tiny/ |
| ... | ... | @@ -49,10 +60,9 @@ Key features: |
| 49 | 60 | ATTinyCore |
| 50 | 61 | - by Spence Konde |
| 51 | 62 | - attiny 85 |
| 52 | -- https://github.com/SpenceKonde/ATTinyCore |
|
| 63 | +- https://github.com/SpenceKonde/ATTinyCore == 1.7k stars |
|
| 64 | + |
|
| 53 | 65 | |
| 54 | -MicroCore |
|
| 55 | -- https://mcudude.github.io/MicroCore/package_MCUdude_MicroCore_index.json |
|
| 56 | 66 | |
| 57 | 67 | DIY Attiny |
| 58 | 68 | - https://raw.githubusercontent.com/sleemanj/optiboot/master/dists/package_gogo_diy_attiny_index.json |
Chip-dat/AVR-dat/attiny-dat/attiny13-dat/attiny13-dat.md
| ... | ... | @@ -20,7 +20,7 @@ GPIOs |
| 20 | 20 | - PB0 = D0 = 0 |
| 21 | 21 | - PB1 = D1 = 1 |
| 22 | 22 | - PB2 = D2 = 2 |
| 23 | -- PB3 = D3 = 3 |
|
| 23 | +- **PB3 = D3 = 3** |
|
| 24 | 24 | - PB4 = D4 = 4 |
| 25 | 25 | - PB5 = D5 = 5 |
| 26 | 26 |
Chip-dat/chip-dat.md
| ... | ... | @@ -15,7 +15,7 @@ from a to z |
| 15 | 15 | |
| 16 | 16 | - [[microchip-dat]] |
| 17 | 17 | |
| 18 | -- [[AVR-dat]] - [[attiny13-dat]] - [[avr-sdk-dat]] |
|
| 18 | +- [[AVR-dat]] - [[attiny13-dat]] - [[avr-sdk-dat]] - [[attiny-dat]] |
|
| 19 | 19 | |
| 20 | 20 | - [[PIC-dat]] |
| 21 | 21 |
PCB-dat/PCB-accesories-dat/PCB-accesories-dat.md
| ... | ... | @@ -9,7 +9,9 @@ |
| 9 | 9 | |
| 10 | 10 | - [[PMP1016-dat]] - [[PMP1019-dat]] - [[PMP1021-dat]] == https://www.electrodragon.com/product/m3-brazz-bolt-different-length-available/ |
| 11 | 11 | |
| 12 | +- PCB electric isolation |
|
| 12 | 13 | |
| 14 | +- 三防漆 == Conformal Coating |
|
| 13 | 15 | |
| 14 | 16 | ## ref |
| 15 | 17 |
SDK-dat/arduino-dat/Arduino-IDE-DAT/Arduino-as-ISP-dat/Arduino-as-ISP-dat.md
| ... | ... | @@ -0,0 +1,3 @@ |
| 1 | + |
|
| 2 | +# ArduinoISP-dat |
|
| 3 | + |
SDK-dat/arduino-dat/Arduino-IDE-DAT/ArduinoISP-dat/ArduinoISP-dat.md
| ... | ... | @@ -1,3 +0,0 @@ |
| 1 | - |
|
| 2 | -# ArduinoISP-dat |
|
| 3 | - |
SDK-dat/arduino-dat/arduino-boards-dat/arduino-boards-dat.md
| ... | ... | @@ -19,6 +19,8 @@ |
| 19 | 19 | |
| 20 | 20 | |
| 21 | 21 | |
| 22 | +- [[attiny-dat]] |
|
| 23 | + |
|
| 22 | 24 | |
| 23 | 25 | |
| 24 | 26 |
SDK-dat/avr-sdk-dat/avrdude-dat/2023-12-13-14-39-13.png
| ... | ... | Binary files /dev/null and b/SDK-dat/avr-sdk-dat/avrdude-dat/2023-12-13-14-39-13.png differ |
SDK-dat/avr-sdk-dat/avrdude-dat/avrdude-dat.md
| ... | ... | @@ -4,6 +4,16 @@ |
| 4 | 4 | |
| 5 | 5 | AVR firmware - https://github.com/Edragon/AVR_firmware/tree/master/avrdude |
| 6 | 6 | |
| 7 | + |
|
| 8 | + |
|
| 9 | +* Program hex file into target IC with [[AVRDUDESS-dat]] or [[AVRDUDE-dat]] |
|
| 10 | + |
|
| 11 | + |
|
| 12 | + |
|
| 13 | + |
|
| 14 | + |
|
| 15 | + |
|
| 16 | + |
|
| 7 | 17 | ## Version |
| 8 | 18 | |
| 9 | 19 | - avrdudess |
mechanics-dat/heatsink-dat/heatsink-dat.md
| ... | ... | @@ -1,6 +1,9 @@ |
| 1 | 1 | |
| 2 | 2 | # heatsink-dat |
| 3 | 3 | |
| 4 | + |
|
| 5 | +- [[PCB-accesories-dat]] |
|
| 6 | + |
|
| 4 | 7 | - [[PMP1013-dat]] - [[PMP1008-dat]] |
| 5 | 8 | |
| 6 | 9 | - [[PMP1010-dat]] == 11 x 11 mm |