Emisar D4S review

I like AVRDUDESS as its a bit more idiot proof if you want a GUI, but really you need to do some reading. You can kill your D4S if you flash it wrong and it wont be recoverable without specialty tools.

Check out the first post in this thread: Flashlight Firmware Repository

Look through the readme and read the getting started links.

Im thinking you never installed a driver for your USBASP and the links above should have the correct drivers.

I use simple batch files for flashing lights with AVRDUDESS and I have it broken up based on if im flashing fuses(potentially dangerous, only needs done once) or flashing firmware (Mostly safe)
These are both for ATtiny 85s.

FW:
cd “C:\Program Files (x86)\AVRDUDESS”
avrdude -c usbasp -p t85 -u -U flash:w:C:\Users\username\Desktop\builds.local\1.hex:a

So you would type “FW-ATtiny85.bat FWNAME”

Fuses:
cd “C:\Program Files (x86)\AVRDUDESS”
avrdude -c usbasp -p t85 -u -U lfuse:w:0xe2:m -U hfuse:w:0xdf:m -U efuse:w:0xff:m

Type “Set-ATtiny85Fuses.bat”