Just a super quick share here, but for those using Windows/PowerShell environments I wrote a little script to force a Particle device into DFU mode via serial connect at baud 14400.
$scom = [System.IO.Ports.SerialPort]::getportnames()
$port = new-Object System.IO.Ports.SerialPort $scom,14400,None,8,one
$port.open()
$port.close()
Connect via USB and run the following in a powershell window (or save it in a goToDFU.ps1 script if you’d like)
Quicker and easier than using the buttons!