Per Tillisch
Per Tillisch
I think probably you are already using the available communication channels so I don't have anything else to suggest. Arduino forum: Arduino users, but mostly not monitored by anyone from...
>Does this mean I should plan to drop such support from this project? Well, first I should state that I am very biased because the `arduino/compile-sketches` and `arduino/report-size-deltas` are my...
> digitalRead() [...] should fail if we haven't made a call to pinMode() The pin is in `INPUT` mode by default, so `digitalRead()` without prior `pinMode()` call is valid and...
> does digitalWrite() work without calling pinMode(pin, OUTPUT)? If the pin is in the default INPUT mode, then `digitalWrite()` will enable or disable the pull-up resistor: ```cpp void setup() {}...
## Considerations There are some factors to consider related to enforcement of LP048: ### Dependent libraries might be submitted in parallel If [LP048](https://arduino.github.io/arduino-lint/dev/rules/library/#depends-not-in-index-lp048) was made a requirement for library registry...
I believe this is the specific statement from Massimo Banzi that Paul Stoffregen referred to: https://groups.google.com/a/arduino.cc/d/msg/developers/E0pUPWeDE2Y/GPWl9Nw1BwAJ Related: https://github.com/arduino/Arduino/issues/2416
> could you add a link, please? Just out of interest... I believe this is it: https://groups.google.com/a/arduino.cc/d/msg/developers/sTacUMEXBTw/H2v9GabLBAAJ
There is additional discussion on the subject at https://github.com/arduino/Arduino/issues/10382, which I am closing as a duplicate of this one.
Hi @Strooom. Thanks for your interest in the Arduino Lint rule documentation. The reason this link is broken is because this `library.md` file is [programmatically generated](https://github.com/arduino/arduino-lint/blob/main/ruledocsgen/main.go) from [the Arduino Lint...
Here's another version: https://github.com/McNeight/MemoryFree I find it useful for detecting memory leaks.