Flashing LED with Modulo?

aarg:
FWIW

void setup()

digitalWrite(LED_BUILTIN, millis()&2048);

Almost, but no cigar.
The parameter has to be a zero or nonzero byte; you could make that truthy: (millis&2048)==0

Yours,
TonyWilk