MCPcopy Create free account
hub / github.com/FastLED/FastLED / strobe

Method strobe

src/platforms/esp/8266/fastpin_esp8266.h:34–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 inline static void set(FASTLED_REGISTER port_t val) __attribute__ ((always_inline)) { if(PIN < 16) { _GPB._GPO = val; } else { GP16O = val; }}
33
34 inline static void strobe() __attribute__ ((always_inline)) { toggle(); toggle(); }
35
36 inline static void toggle() __attribute__ ((always_inline)) { if(PIN < 16) { _GPB._GPO ^= MASK; } else { GP16O ^= MASK; } }
37

Callers

nothing calls this directly

Calls 1

toggleFunction · 0.50

Tested by

no test coverage detected