Skip to content

Add Arduino Nano Every to analogReference() page #992

Open
@Jorgetrujilloroman

Description

@Jorgetrujilloroman

To avoid confusion, as in this Forum thread, add Arduino Nano Every to the Arduino megaAVR Boards, next to the UNO WiFi Rev2 on the analogReference() Function page.

Activity

Azat-pixel

Azat-pixel commented on Mar 16, 2025

@Azat-pixel

void setup() {
pinMode(13, OUTPUT); // sets the digital pin 13 as output
}

void loop() {
  digitalWrite(13, HIGH); // sets the digital pin 13 on
  delay(1000);            // waits for a second
  digitalWrite(13, LOW);  // sets the digital pin 13 off
  delay(1000);            // waits for a second
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      Add Arduino Nano Every to analogReference() page · Issue #992 · arduino/reference-en