Markdown Converter
Agent skill for markdown-converter
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Sign in to like and favorite skills
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This is a PlatformIO-based embedded systems project targeting the NodeMCU v2 (ESP8266) development board. The project is configured to control BTF-LIGHTING 2835SMD WS2811 IC RGB addressable LED strips (DC24V, 108LED/m, 18Pixels/m).
pio run
pio run --target upload
pio device monitor
pio run --target clean
pio run --target upload && pio device monitor
src/main.cpp - Main Arduino sketch with setup() and loop() functionsplatformio.ini - PlatformIO configuration file defining board and platformlib/ - Project-specific librariesinclude/ - Header files for the projecttest/ - Unit tests.pio/ - PlatformIO build artifacts (gitignored)This is an Arduino-based embedded project using the PlatformIO build system. Code follows the standard Arduino structure with
setup() running once at startup and loop() running continuously.
When working with the WS2811 LED strip, you'll likely need to use a library like FastLED or Adafruit NeoPixel that supports the WS2811 protocol. The LED strip operates at DC24V and has 18 addressable pixels per meter.