Skip to content

Any measurement pins grouped in the table #5

@spairo1741

Description

@spairo1741
  • not every esp32 board has all the next pins. Is it realistic that active pins should be listed in the table?

Pin 18 -> 1 => OK
Pin 19 -> 10 => OK
Pin 21 -> 1000 => OK
Pin 22 -> 10000 => OK
Pin 23 -> 100000 => OK
Pin 25 -> 10000000 => OK
Pin 26 -> 0 => ERROR
Pin 27 -> 0 => ERROR

int arr[] = {18, 19, 21, 22, 23, 25, 26, 27}; // free pins for esp32 Wroom 32
...
for(int pin : arr) {
//for (int pin = pinStart; pin < pinStart + numberOfPins; pin++) {
pinMode(pin, OUTPUT);
digitalWrite(pin, HIGH);
...
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions