reference-en icon indicating copy to clipboard operation
reference-en copied to clipboard

Editable source for the Arduino Reference

Results 115 reference-en issues
Sort by recently updated
recently updated
newest added

The current documentation says "dim," but this code starts the led at 0 and brightens it.

enhancement

The documentation doesn't talk about what is returned when readStringUntil can't find the terminator, so I added it. I added clarification that if read*Until don't find ther terminator all read...

enhancement

All three functions have the following signature `double (*)(double)`. This is now reflected in the documentation.

bug
Waiting for feedback

In the reference page about the char datatype (https://www.arduino.cc/reference/en/language/variables/data-types/char/) there is a broken link to the ASCII chart (https://www.arduino.cc/en/Reference/ASCIIchart).

bug

This is a followup to an arduino forum post at https://forum.arduino.cc/index.php?topic=654029.0 and another at https://forum.arduino.cc/index.php?topic=625019.0 People familiar with the Arduino UNO are not aware that the SDA and SCL pins...

[Docu: Wire::read()](https://www.arduino.cc/en/Reference/WireRead) > Returns > The next byte received It should be: > Returns > The next byte received (or -1 if no data is available). Data type: int.

bug

To help constructors follow a standard, can I recommend listing recommendations for the Wire library regarding address assignments for an Arduino as a slave device? A list of non-reserved MSB...

enhancement

Recently, some new timeout API methods were added to the AVR Wire library (see https://github.com/arduino/ArduinoCore-avr/issues/42#), which should be documented. Given there is no repository for the library reference, I'm going...

bug

The SPI library documentation does not mention that `SPI.begin` must be called in order to correctly configure the SPI bus. The documentation implies that `SPI.beginTransaction` can be used as a...

bug

In the documentation of [Wire.read()](https://www.arduino.cc/en/Reference/WireRead) is this example: ``` #include void setup() { Wire.begin(); // join i2c bus (address optional for master) Serial.begin(9600); // start serial for output } void...

bug