Tour Easy Rear Running Light: First Light!

The rear running light definitely has an industrial look:

Tour Easy Rear Running Light - installed
Tour Easy Rear Running Light – installed

The front of the light has plenty of clearance from the seat mesh:

Tour Easy Rear Running Light - installed side view
Tour Easy Rear Running Light – installed side view

Out on the road, the 1 W LED appears about as bright as automotive running lights:

Tour Easy Rear Running Light - tunnel
Tour Easy Rear Running Light – tunnel

The blink pattern makes it perfectly visible in sunlight, although I’d prefer somewhat larger optics:

Tour Easy Rear Running Light - sunlight
Tour Easy Rear Running Light – sunlight

In shaded conditions, it’s downright conspicuous:

Tour Easy Rear Running Light - shade
Tour Easy Rear Running Light – shade

At any reasonable distance, the 10° beam covers much of the road behind the bike:

Tour Easy Rear Running Light - distant
Tour Easy Rear Running Light – distant

You may not know what the occulting red light represents, but something ahead is worthy of your attention.

The Arduino source code producing the two dits:

// Tour Easy Running Light
// Ed Nisley - KE4ZNU
// September 2021

#include <morse.h>

#define PIN_OUTPUT  13

// second param: true = active low output
LEDMorseSender Morser(PIN_OUTPUT,true,(float)10.0);

void setup()
{
    Morser.setup();

    Morser.setMessage(String("qst de ke4znu "));
    Morser.sendBlocking();

//    Morser.setWPM((float)3.0);
    Morser.setSpeed(75);
    Morser.setMessage(String("i   "));
}

void loop()
{
    if (!Morser.continueSending())
        Morser.startSending();

}

Looks good to me, anyhow.