English Japanese(日本語)
Summary
I built a development environment of ATtiny10 and ATtiny13 under Arduino IDE 1.6.x 1.8.x
- @maris_HY is distributing ATtiny10/13 definition file for Arduino IDE 1.0.x . It’s called bitDuino.
- I rebuilt these bitDuino files for Arduino IDE 1.6.x 1.8.x .
- And I built AVR developer tools of generating a code of ATtiny10.
Testing
Windows-7, Mac OS X Ei Captan, Arduino IDE 1.6.13, AVRISP mkII
How to build
as follows, install the bitDuino files, and replace the AVR developer tools.
- Download bitDuino files
- bitDuino_2017.zip for Arduino IDE 1.6.x 1.8.x
- Download AVR developer tools
- for Windows avr-win_v1.0.0.zip
- for Mac avr-mac_v1.0.0.zip
- Install bitDuino
- Extract bitDuino_2017.zip
bitDuino_2017 folder appears. bitDuino_2017 include bitDuino10 and bitDuino13. - Open hardware folder (or make hardware folder, and open it) under your Arduino Sketch folder.
- Move bitDuino10 and bitDuino13 under the bitDuino_2017 to hardware folder.
- Extract bitDuino_2017.zip
- 【Windows】replace the AVR developer tools
- Extract avr-win_v1.0.0.zip
avr folder appears. - Open c:\”program Files”\arduino\hardware\tools
- There is an avr folder. Change the name avr to avr-org.
- Move extracted new avr to same place of avr-org
- Extract avr-win_v1.0.0.zip
- 【Mac】replace the AVR developer tools
- Extract avr-mac_v1.0.0.zip in ~/Downloads folder..
avr folder appears. - start Terminal
- Key in commands on your terminal window as follows .
$sudo mkdir /usr/local/Arduino $sudo mv ~/Downloads/avr /usr/local/Arduino/ $cd /Applications/Arduino.app/Contents/Java/hardware/tools/ $mv avr avr-org $ln -s /usr/local/Arduino/avr/ ./
- if you installed Crosspack-AVR then you must uninstall it by command as follows.
$sudo /usr/local/CrossPack-AVR/uninstall
- Extract avr-mac_v1.0.0.zip in ~/Downloads folder..
How to use
- How to select ATtiny10, ATtiny13
- Select Programmer
Open “Tools” -> “Programmer: >”, and select programmer. - Wiring
see follows Fig.


- ATtiny13 can running 9.6MHz internal clock.
- Virgin chip of ATtiny13 running 1.2MHz internal clock.
- you can change clock freq. 1.2MHz to 9.6MHz
- Do “Tools” -> “Clock:” Select 9.6MH(Internal)
- Do “Tools” -> “Burn Bootloader”
ATtiny13 fuse bit is changed for 9.6MHz internal clock by this operation.
2016.12.19 16:40 update bitDuino Thanks @maris_HY
2016.12.19 15:42 upload