Sapient Hetero

Results 46 comments of Sapient Hetero

Glad you got it working. You can also dim the bulbs by using pulse width modulation on LEpin. // these values determine how dim the bulbs are when dimming is...

By the way, I am using a combination Mega/ESP8266 board to control my Nixie Clock [[https://www.amazon.com/gp/product/B07THDDFSJ/ref=ppx_yo_dt_b_search_asin_title?ie=UTF8&psc=1](url). Instead of using the non-user-friendly buttons on the back of the clock to change...

Is it possible to track which socket is the most "stale" by tracking time of last use for each? Then when it's necessary to reclaim sockets, the one not used...

I'm running into something like this when I load test my embedded webserver using multiple browsers because the browsers all specify "Connection: keep-alive". My system ends up with 7 open...

I've finished my socket management project and it's been stable in testing for over a month. It may not be perfect as-is for low-RAM boards, but it rocks on my...

Similarly, RAMSTART and RAMEND are not defined at all for the Adafruit Metro M4, which causes the library to allocate only 4 sockets for the W5500 instead of 8.

I am. Segger debugger showed sockindex with 4 array elements in EthernetClient. When I commented out the compiler directives and just set MAX_SOCK_NUM to 8, it showed 8 elements. I...

I'm running an Adafruit Metro M4. I posted here hoping to get this resolved for others who may lack the tools to find it. I moved to the M4 after...

I agree. The existing code determines the number of hardware sockets available based on chip type. Let that be the default behavior. Keep #define MAX_SOCK_NUM as a user-settable manual limit...

I disagree with the suggestion of hard coding a max of 4 sockets. If someone buys a W5500-based board specifically to get the advertised 8 sockets, why shouldn't the library...