Search found 4 matches

by thonshic
22 Jul 2020, 20:57
Forum: ESP Easy: Software
Topic: Flash script for esptool on Linux
Replies: 10
Views: 16145

Re: Flash script for esptool on Linux

Thanks for the bug report @obod0002c, I edited it in the wiki, hopefully it works now (untested)...
by thonshic
26 Feb 2017, 13:19
Forum: ESP Easy: Software
Topic: Change Request - Dust Sensor
Replies: 5
Views: 4356

Re: Change Request - Dust Sensor

BTW, we found the SDS011 sensor to be a really good PM sensor with much less noisy measurements.
This sensor is not yet implemented (it has a serial interface), but should be easy to do, there is arduino code available already.
by thonshic
25 Feb 2017, 11:43
Forum: ESP Easy: Software
Topic: Flash script for esptool on Linux
Replies: 10
Views: 16145

Re: Flash script for esptool on Linux

Is there any place/repo for a pull request?
by thonshic
25 Feb 2017, 11:41
Forum: ESP Easy: Software
Topic: Flash script for esptool on Linux
Replies: 10
Views: 16145

Re: Flash script for esptool on Linux

Saw your script too late, so wrote my own one. This one looks for * esptool * firmware images and presents a list of found ones, so it should also work for other releases. #!/bin/bash selectst="" for i in ESPEasy*bin do selectst="$i $i off $selectst" done # check for esptool espt...