Usblinky: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
Zeile 12: Zeile 12:
  
  
 
 
== Media ==
 
  
 
{| border=0 cellspacing="0" style="border-collapse:collapse;"
 
{| border=0 cellspacing="0" style="border-collapse:collapse;"
Zeile 41: Zeile 38:
  
  
===Software===
+
== Software ==
 
usblinky uses the [https://github.com/micronucleus/micronucleus micronucleus bootloader] that speaks USB in software and enables the ATTINY85 to be programmed directly over USB.
 
usblinky uses the [https://github.com/micronucleus/micronucleus micronucleus bootloader] that speaks USB in software and enables the ATTINY85 to be programmed directly over USB.
  
Zeile 50: Zeile 47:
  
  
== How ==
+
== How / Why==
 
I started this project after [[Benutzer:pl|pl]], [[Benutzer:Crazy-chris|chris]] and [[Benutzer:overflo|I]] went to make munich 2015 to represent the metalab and the hackerspaceshop.com project there.
 
I started this project after [[Benutzer:pl|pl]], [[Benutzer:Crazy-chris|chris]] and [[Benutzer:overflo|I]] went to make munich 2015 to represent the metalab and the hackerspaceshop.com project there.
  
Zeile 78: Zeile 75:
  
 
This stick illuminated a big white button that spits out "PING\n" over USB keyboard when pressed
 
This stick illuminated a big white button that spits out "PING\n" over USB keyboard when pressed
 +
  
  

Version vom 12. März 2015, 21:27 Uhr

What

usblinky

  • is a small usb stick with 4 wires on on end
  • controls up to 150 addressable RGB lights (for example WS2812B)
  • can run stand alone from a USB power supply once programmed
  • consists of:
    • ATTINY85
    • micronucleus 1.11 bootloader based on vUSB



...
...
...
..
...
..


(in case there is no embedded video look here and here





Software

usblinky uses the micronucleus bootloader that speaks USB in software and enables the ATTINY85 to be programmed directly over USB.

A modified arduino environment for this task can be found here

All the sources are available on github.


How / Why

I started this project after pl, chris and I went to make munich 2015 to represent the metalab and the hackerspaceshop.com project there.

It was a blast!

On the second day a guy asked for a microcontroller and a high power led to illuminate a 3D-printed vase he made.

We had no Highpower RGB leds on hand but we gave him a microcontroller and a piece of ws2812 ledstrip (thanks to pl for that great idea!)

Turns out it looked pretty groovy.

So the next day the guys returned the microcontroller and ledstrip and asked if this could be available as a kit.

I said that a full blown ATMEGA32U4 is a waste of resources for that kind of application.. and this is how this project started.

Johannes from ehajo was also there showing off a usbstick with an attiny2313 on board that can be used as a AVR programmer.

I got a handful of these sticks and made a new firmware to drive ledstrips with it.

But this microcontroller was too small to do fancy effects and so i made a completely new design for this job.



Alternate usecases

A usblinky stick was used in the selfiebooth installed for the time travellers party.

This stick illuminated a big white button that spits out "PING\n" over USB keyboard when pressed



Pitfalls and lessons learned

Adafruit Trinket

Adafruit built another bootloader that uses a similar trick than micronucleus.

They speak USB over vUSB but enumerate the device as a usbtiny programmer.

The arduino sees a programmer and progremms the ATTINY85 as a target, when it actually overwrites its own FLASH with the user program.

I liked that nifty approach and used the Trinket bootloader when i started this project.

But then i read that adafruit does not wnt you to use their USB ID in a product that you sell.

I contacted them but got no meaningful reply, only a standardized answer that i should come back once my product launched.

Later on i found out that the bootloader on the trinket is fragile.

Under some special circumstances it can happen that the bootloader falsy triggers and the FLASH on the MCU is damaged and it can not be programmed any more over USB.


Digispark / micronucleus

That was the point that i took a closer look at the micronucleus bootloader.

This bootloader is significantly smaller (2k versus 3.5k) and the code is much more straight forward than the trinket bootloader.

The drawback is that you need to modify the arduino environment, but there are packages available for that.

When I used the usblinky as a BUTTON for the selfiebooth setup I realized that the pinout differs on the trinket.

D+ and D- are switched on the MCU side.

In theory not a big deal, but a lot of libraries that are available for the digispark project (for example the USB keyboard emulation) has this pinout hardcoded and I needed to modify the .cpp files in the Arduino environment to make that work.

Future versions of USBlinky have the pins swapped as on the original digispark design.



Who

  • Overflo -The whole USBLINKY project.
  • clifford, marius - OpenSCAD THANK YOU!!
  • cs - vUSB from OBDEV is amazing. Thank you so much.



Links

hackerspaceshop

github

Digispark Arduino