Shawn A

Results 193 issues of Shawn A

App seems to assert control lines, I need them off. I do not see any settings for serial, are they hidden somewhere?

usb header breakout support, D+ D- inputs for usb etc. even if they were 2mm pitch holes or pads.

I would love to see PTC protection, or at least a footprint for it, instead of just the schottky ( which will magic smoke on direct short real quick btw...

What do you think about allowing alternative formatting of output ? eg. binary I personally use this for icons and stuff for example ```C++ const unsigned char bitmap[] PROGMEM =...

enhancement

If you have a long startAnimation and call refresh before it completes your meter zeroes out. example http://jsfiddle.net/tablatronix/CM8vD/

enhancement

add outline support to colon method

bug

to use with `drawOutline` on monochrome displays `drawOutlineOnly` maybe? And have it toggle the fill ![Screen Shot 2019-06-13 at 1 01 46 PM](https://user-images.githubusercontent.com/807787/59456988-2b953b80-8ddd-11e9-8483-5aec44cd24ca.png)

enhancement

I want to be able to set "backup_per_time": "file" "backup_per_day": false, and have files save in proper heirachies, with stamped filenames, like this plugin used to do in ST2 https://github.com/joelpt/sublimetext-automatic-backups...

apply fix to parsearguments when no contentlength, same as esp8266 ``` } else { // No content - but we can still have arguments in the URL. _parseArguments(searchStr); } ```

esp32 wifiserver only has this ``` WiFiServer(uint16_t port=80, uint8_t max_clients=4):sockfd(-1),_accepted_sockfd(-1),_port(port),_max_clients(max_clients),_listening(false),_noDelay(false){} ``` so : ``` WebServer::WebServer(IPAddress addr, int port) : _server(addr, port) ``` set ports to ipaddr first octet xxx. instead...