Luke Cyca

Results 19 issues of Luke Cyca

Move the example into an `Examples` subdirectory so that it can be selected from the Examples menu in the arduino IDE.

The ESP32 has multiple SPI busses, which can be configured during instantiation of the Arduino SPI API as per the [Arduino SPI example](https://github.com/espressif/arduino-esp32/blob/master/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino). This pull request changes all calls to...

I was wondering why this library has its own bespoke NVS functionality. The esp-idf's wifi API already optionally stores SSID and password in NVS. It seems that this library could...

**Is your feature request related to a problem? Please describe.** The only way to configure this library is through Kconfig parameters. This is inconvenient if the application code needs to...

A standard iOS status bar is 20px in height, so most apps have a 20px top spacer to compensate. When the iOS in-call status is active, the status bar is...

According to the docs at https://www.twilio.com/docs/sms/send-messages#conditional-parameters, only one of `From` or `MessagingServiceSid` is required. Currently there is no way to specify a `MessagingServiceSid` instead of `From` when calling `twilio.SendSMS()` in...

Platform: iOS Version: master (f11374745deba9f18f7b8a9bb4b0b2573026f522) Steps to reproduce: 1. Use `fetch()` to hit an endpoint that sets a cookie with no expiry (ie: a session cookie). For example `set-cookie: foo=bar;...

From nginx-proxy/docker-letsencrypt-nginx-proxy-companion#695: >Let's Encrypt is changing the default chain of trust ([details](https://letsencrypt.org/2020/09/17/new-root-and-intermediates.html)), which has wide implications for backwards compatibility for clients with old CA root stores. Certbot now supports specifying...

If I use this library in the same project as [esp32-owb](https://github.com/DavidAntliff/esp32-owb) by @DavidAntliff, I get the following reboot loop as soon as a hit `digitalLeds_initStrands`. ``` Guru Meditation Error: Core...

In reading the example, the term "task" is very overloaded. It refers to a model object, a property of that object, as well as celery's task concept. For example: ```...