You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo (FastLED/datasheets) is currently empty apart from README.md and CLAUDE.md. The main FastLED repo (FastLED/FastLED) supports a wide range of vendor silicon and LED chips across src/platforms/** and src/fl/chipsets/**, but none of the vendor PDFs have been imported yet. Agent guardrails in agents/docs/peripheral-existence.md and agents/docs/register-maps.md in the main repo require citing this repo before writing driver code — so we need the actual PDFs on disk.
Inventory below was pulled from src/platforms/** (host silicon) and src/fl/chipsets/** + src/chipsets.h (LED chips).
Proposal
Collect the official vendor PDFs (datasheet, user manual / technical reference manual, errata, and relevant application notes) for every chip listed below and file each one under <vendor>/<product-type>/<part-number>/ per the layout in README.md and CLAUDE.md.
(Vendor slugs for LED-side chips beyond worldsemi are proposals — they need to be added to the vendor table in README.md in the same commit that first imports a PDF for them, per the CLAUDE.md rule.)
Acceptance criteria
Each host-silicon row above has at least a datasheet.pdf (and technical-reference-manual.pdf where the vendor separates the two) landed under <vendor>/<product-type>/<part-number>/.
Each LED-chip row has at least a datasheet.pdf landed under the appropriate <vendor>/addressable-led/<part>/ directory. Where an OCR/text extraction is needed for pattern-matching timings, drop a sibling datasheet.txt next to it.
Any new vendor slug not already listed in README.md (e.g. ambiq, apa, normand, titanmicro, newstar, sunmoon, hdchips, ucs, tm, gs) is added to the vendor-slug table in README.md in the same commit that first uses it.
SOURCES.md sits next to any PDF that was renamed from the vendor filename, recording the original filename + source URL.
Available errata PDFs are included where the vendor publishes them (notably Espressif — every ESP32 variant has a dedicated errata sheet).
Nothing under NDA is committed.
Decisions
Scope: silicon + LED chips only, no dev-board pinouts.Why:board-type entries are already listed for Teensy in README.md as the exception; other Arduino/dev-kit board manuals are downstream and don't belong here.
Priority: P2.Why: not blocking active driver work today, but the guardrail doc in FastLED/FastLED already expects to cite this repo, so this backfills a required dependency.
LED-chip vendor slugs are provisional.Why: the vendor table in README.md only lists silicon vendors today. Rather than guess and hard-code slugs like apa vs apa-electronic, whoever imports the first PDF picks the slug and updates the table in the same commit — per the CLAUDE.md rule.
Split ESP32 by variant, not by family.Why: the ESP32-S3 TRM is a different document from the original ESP32 TRM, and FastLED already discriminates between them (isr_esp32_idf5.hpp etc.).
Teensy boards get both a pjrc/board/teensy-*/ entry AND their underlying NXP part number entry.Why: register access lives under nxp/mcu/<part>/, but the board-level pinout + schematic is a PJRC document.
Do not bulk-import in one PR.Why: one PDF per commit (per the "Adding a new datasheet" procedure in README.md) keeps the git history reviewable and lets vendor-slug additions land alongside the first file that uses them.
Context
This repo (
FastLED/datasheets) is currently empty apart fromREADME.mdandCLAUDE.md. The main FastLED repo (FastLED/FastLED) supports a wide range of vendor silicon and LED chips acrosssrc/platforms/**andsrc/fl/chipsets/**, but none of the vendor PDFs have been imported yet. Agent guardrails inagents/docs/peripheral-existence.mdandagents/docs/register-maps.mdin the main repo require citing this repo before writing driver code — so we need the actual PDFs on disk.Inventory below was pulled from
src/platforms/**(host silicon) andsrc/fl/chipsets/**+src/chipsets.h(LED chips).Proposal
Collect the official vendor PDFs (datasheet, user manual / technical reference manual, errata, and relevant application notes) for every chip listed below and file each one under
<vendor>/<product-type>/<part-number>/per the layout inREADME.mdandCLAUDE.md.Host silicon — SoC / MCU / boards
espressifsocsrc/platforms/esp/{32,8266}/**nxpmcufastpin_arm_lpc11_legacy.h), MK20DX128/256 (Teensy 3.1/3.2), MK64/MK66 (Teensy 3.5/3.6), MKL26Z (Teensy LC), i.MX RT1062 (Teensy 4.x)src/platforms/arm/{lpc,mk20dx,k20,k66,kl26,mxrt1062}/**pjrcboardsrc/platforms/arm/teensy/**stmicroelectronicsmcusrc/platforms/arm/{stm32,giga}/**nordicmcusrc/platforms/arm/{nrf51,nrf52}/**raspberrypimcusrc/platforms/arm/rp/{rp2040,rp2350}/**renesasmcusrc/platforms/arm/renesas/**microchipmcusrc/platforms/avr/{atmega,attiny}/**,src/platforms/arm/{d21,d51,sam,samd}/**ambiqmcusrc/platforms/apollo3/**siliconlabsmcusrc/platforms/arm/{mgm240,silabs}/**LED chips — addressable + non-addressable
worldsemiaddressable-ledsrc/fl/chipsets/{ws2801.h,encoders/ws2816.h},platforms/chipsets_specialized_ws2812.hnormand(SK)addressable-ledsrc/chipsets.hapaaddressable-ledsrc/fl/chipsets/apa102.htitanmicroaddressable-ledsrc/fl/chipsets/lpd880x.hnewstaraddressable-ledsrc/fl/chipsets/p9813.hsunmoonaddressable-ledsrc/fl/chipsets/sm16716.hhdchipsaddressable-ledsrc/fl/chipsets/hd108.hucsaddressable-ledsrc/fl/chipsets/ucs7604.htmaddressable-ledsrc/chipsets.hgsaddressable-ledsrc/chipsets.h(Vendor slugs for LED-side chips beyond
worldsemiare proposals — they need to be added to the vendor table inREADME.mdin the same commit that first imports a PDF for them, per the CLAUDE.md rule.)Acceptance criteria
datasheet.pdf(andtechnical-reference-manual.pdfwhere the vendor separates the two) landed under<vendor>/<product-type>/<part-number>/.datasheet.pdflanded under the appropriate<vendor>/addressable-led/<part>/directory. Where an OCR/text extraction is needed for pattern-matching timings, drop a siblingdatasheet.txtnext to it.README.md(e.g.ambiq,apa,normand,titanmicro,newstar,sunmoon,hdchips,ucs,tm,gs) is added to the vendor-slug table inREADME.mdin the same commit that first uses it.SOURCES.mdsits next to any PDF that was renamed from the vendor filename, recording the original filename + source URL.Decisions
board-type entries are already listed for Teensy inREADME.mdas the exception; other Arduino/dev-kit board manuals are downstream and don't belong here.FastLED/FastLEDalready expects to cite this repo, so this backfills a required dependency.README.mdonly lists silicon vendors today. Rather than guess and hard-code slugs likeapavsapa-electronic, whoever imports the first PDF picks the slug and updates the table in the same commit — per the CLAUDE.md rule.isr_esp32_idf5.hppetc.).pjrc/board/teensy-*/entry AND their underlying NXP part number entry. Why: register access lives undernxp/mcu/<part>/, but the board-level pinout + schematic is a PJRC document.README.md) keeps the git history reviewable and lets vendor-slug additions land alongside the first file that uses them.Related issues
None — this repo has no prior issues.