{"id":26680061,"url":"https://github.com/wagiminator/attiny13-tinybling","last_synced_at":"2025-08-22T18:17:14.283Z","repository":{"id":127507372,"uuid":"376619350","full_name":"wagiminator/ATtiny13-TinyBling","owner":"wagiminator","description":"It just does bling bling ...","archived":false,"fork":false,"pushed_at":"2022-12-12T19:06:27.000Z","size":1789,"stargazers_count":15,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-23T00:08:44.282Z","etag":null,"topics":["arduino","attiny","attiny13","attiny13a","avr","diy","led","neopixel","pcb","project"],"latest_commit_sha":null,"homepage":"https://oshwlab.com/wagiminator/attiny13-tinybling","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wagiminator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2021-06-13T18:59:18.000Z","updated_at":"2025-04-24T15:33:14.000Z","dependencies_parsed_at":"2023-07-18T03:45:39.776Z","dependency_job_id":null,"html_url":"https://github.com/wagiminator/ATtiny13-TinyBling","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wagiminator/ATtiny13-TinyBling","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wagiminator%2FATtiny13-TinyBling","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wagiminator%2FATtiny13-TinyBling/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wagiminator%2FATtiny13-TinyBling/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wagiminator%2FATtiny13-TinyBling/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wagiminator","download_url":"https://codeload.github.com/wagiminator/ATtiny13-TinyBling/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wagiminator%2FATtiny13-TinyBling/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271680531,"owners_count":24802074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-22T02:00:08.480Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arduino","attiny","attiny13","attiny13a","avr","diy","led","neopixel","pcb","project"],"created_at":"2025-03-26T06:19:51.006Z","updated_at":"2025-08-22T18:17:14.274Z","avatar_url":"https://github.com/wagiminator.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TinyBling - it just does bling bling...\nTinyBling is a completely pointless device that just does bling bling. It's wasted an ATtiny13A, 16 WS2812C-2020 5mA addressable LEDs, and a LIR2032 rechargeable coin cell battery.\n\n- Project Video (Youtube): https://youtu.be/-KiLh9RPjs4\n- Design Files (EasyEDA): https://easyeda.com/wagiminator/attiny13-tinybling\n\n![TinyBling_pic1.jpg](https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyBling/main/documentation/TinyBling_pic1.jpg)\n\n# Compiling and Uploading the Firmware\nSince there is no ICSP header on the board, you have to program the ATtiny either before soldering using an [SOP adapter](https://aliexpress.com/wholesale?SearchText=sop-8+150mil+adapter), or after soldering using an [EEPROM clip](https://aliexpress.com/wholesale?SearchText=sop8+eeprom+programming+clip). The [AVR Programmer Adapter](https://github.com/wagiminator/AVR-Programmer/tree/master/AVR_Programmer_Adapter) can help with this.\n\n## If using the Arduino IDE\n- Make sure you have installed [MicroCore](https://github.com/MCUdude/MicroCore).\n- Go to **Tools -\u003e Board -\u003e MicroCore** and select **ATtiny13**.\n- Go to **Tools** and choose the following board options:\n  - **Clock:**  9.6 MHz internal osc.\n  - **BOD:**    BOD 2.7V\n  - **Timing:** Micros disabled\n- Connect your programmer to your PC and to the ATtiny.\n- Go to **Tools -\u003e Programmer** and select your ISP programmer (e.g. [USBasp](https://aliexpress.com/wholesale?SearchText=usbasp)).\n- Go to **Tools -\u003e Burn Bootloader** to burn the fuses.\n- Open the TinyBling sketch and click **Upload**.\n\n## If using the precompiled hex-file\n- Make sure you have installed [avrdude](https://learn.adafruit.com/usbtinyisp/avrdude).\n- Connect your programmer to your PC and to the ATtiny.\n- Open a terminal.\n- Navigate to the folder with the hex-file.\n- Execute the following command (if necessary replace \"usbasp\" with the programmer you use):\n  ```\n  avrdude -c usbasp -p t13 -U lfuse:w:0x3a:m -U hfuse:w:0xff:m -U flash:w:tinybling.hex\n  ```\n\n## If using the makefile (Linux/Mac)\n- Make sure you have installed [avr-gcc toolchain and avrdude](http://maxembedded.com/2015/06/setting-up-avr-gcc-toolchain-on-linux-and-mac-os-x/).\n- Connect your programmer to your PC and to the ATtiny.\n- Open a terminal.\n- Navigate to the folder with the makefile and the sketch.\n- Run `PROGRMR=usbasp make install` to compile, burn the fuses and upload the firmware (change PROGRMR accordingly).\n\n![TinyBling_pic4.gif](https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyBling/main/documentation/TinyBling_pic4.gif)\n\n# References, Links and Notes\n1. [ATtiny13A datasheet](http://ww1.microchip.com/downloads/en/DeviceDoc/doc8126.pdf)\n2. [WS2812-2020 Datasheet](https://www.led-stuebchen.de/download/WS2812-2020_V1.1_EN.pdf)\n3. [NeoPixel Implementation](https://github.com/wagiminator/ATtiny13-NeoController)\n\n![TinyBling_pic2.jpg](https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyBling/main/documentation/TinyBling_pic2.jpg)\n![TinyBling_pic3.jpg](https://raw.githubusercontent.com/wagiminator/ATtiny13-TinyBling/main/documentation/TinyBling_pic3.jpg)\n\n# License\n![license.png](https://i.creativecommons.org/l/by-sa/3.0/88x31.png)\n\nThis work is licensed under Creative Commons Attribution-ShareAlike 3.0 Unported License. \n(http://creativecommons.org/licenses/by-sa/3.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwagiminator%2Fattiny13-tinybling","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwagiminator%2Fattiny13-tinybling","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwagiminator%2Fattiny13-tinybling/lists"}