// morse_beacon.ino
// #include <Arduino.h> // optional
#define dot _dot();
#define dash _dash();
#define space _space();
#define _h morse_h();
#define _e morse_e();
#define _l morse_l();
#define _o morse_o();

#define hello _hello();

void _dot()   { Serial.print("."); }
void _dash()  { Serial.print("-"); }
void _space() { Serial.print("  "); }

void morse_h() {
    dot dot dot dot
}

void morse_e() {
    dot
}

void morse_l() {
    dot dash dot dot
}

void morse_o() {
    dash dash dash
}

void _hello() {
    space
    _h space
    _e space
    _l space
    _l space
    _o
    space space space
}

void setup() {
    Serial.begin(9600);
    space hello space
    delay(2200);
}

void loop() {
    space hello space space space space space hello space
    delay(2200);
}

// Saved: Wed 26 Oct 14:12:17 UTC 2022
// END.
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5