Claude-skill-registry allegro

Allegro MicroSystems MPN encoding patterns, suffix decoding, and handler guidance. Use when working with current sensors, motor drivers, or Hall effect sensors.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/allegro" ~/.claude/skills/majiayu000-claude-skill-registry-allegro && rm -rf "$T"
manifest: skills/data/allegro/SKILL.md
safety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
  • dumps environment variables
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content

Allegro MicroSystems Manufacturer Skill

MPN Structure

Allegro MPNs follow this general structure:

[FAMILY][SERIES][PACKAGE][VARIANT]-[RATING]-[SUFFIX]
   │       │       │        │         │        │
   │       │       │        │         │        └── T = Tape/Reel, Pb-free
   │       │       │        │         └── Current rating (05B = 5A bidirectional)
   │       │       │        └── TR = Tape and Reel
   │       │       └── Package code (ELC, LLC, SE, etc.)
   │       └── Series number (712, 723, 4988, etc.)
   └── Family prefix (ACS, A, AH, AAS)

Example Decoding

ACS712ELCTR-05B-T
│  │  │   │  │  │
│  │  │   │  │  └── T = Pb-free/Tape and Reel qualifier
│  │  │   │  └── 05B = 5A bidirectional current sensing
│  │  │   └── TR = Tape and Reel packaging
│  │  └── ELC = SOIC-8 package
│  └── 712 = Series number
└── ACS = Current Sensor family

A4988SETTR-T
│    │   │
│    │   └── T = Tape and Reel
│    └── SETTR = QFN package, Tape and Reel
└── A4988 = Stepper motor driver

A1324LLHLT-T
│    │    │
│    │    └── T = Tape and Reel
│    └── LLHLT = SOT-23 package (LLH), Tape and Reel
└── A1324 = Linear Hall effect sensor

Package Codes

Current Sensors (ACS7xx, ACS37xxx)

CodePackageNotes
ELCSOIC-8Standard 8-pin SOIC
LLCSOIC-8Leadless version
KLCSOIC-8-EPEnhanced thermal pad
LHSOT-23Small outline package

Motor Drivers (A3xxx, A4xxx, A5xxx)

CodePackageNotes
SE/SETQFNQuad Flat No-leads
SL/SLBSOIC-2424-pin SOIC
ETQFNQFN variant
KLJTO-92Through-hole

Hall Sensors (A1xxx, AH series)

CodePackageNotes
LUASIP-3Single in-line (3-pin)
EUASIP-4Single in-line (4-pin)
LH/LLHSOT-23Small outline transistor
KUATO-92Through-hole

Family Prefixes

Current Sensors

PrefixCategoryExamples
ACS7xxHall-effect current sensorsACS712, ACS723, ACS758
ACS37xxxCoreless current sensorsACS37612, ACS37030

Motor Drivers

PrefixCategoryExamples
A39xxStepper motor driversA3967 (Easy Driver)
A49xxStepper motor driversA4988 (common in 3D printers)
A59xxBLDC motor driversA5931, A5932

Hall Effect Sensors

PrefixCategoryExamples
A13xxLinear Hall sensorsA1301, A1324, A1325, A1326
AHHall switchesAH3362, AH3366

LED Drivers

PrefixCategoryExamples
A6xxxGeneral LED driversA6261, A6262
A8xxxxHigh power LED driversA80601, A80604

Current Sensor Rating Codes

SuffixMeaning
05B±5A bidirectional
10B±10A bidirectional
20A±20A bidirectional
30A±30A bidirectional
40AB±40A bidirectional
05AU0-5A unidirectional
20AU0-20A unidirectional

Common Series Reference

Current Sensors (most popular)

SeriesTypeUse Case
ACS712Hall-effect, isolatedArduino current sensing, power monitoring
ACS723Hall-effect, low noisePrecision current measurement
ACS758Hall-effect, high currentIndustrial, automotive
ACS37612Coreless, differentialBattery management, motor control

Motor Drivers (most popular)

SeriesTypeUse Case
A4988Stepper, microstepping3D printers, CNC machines
A3967Stepper, Easy DriverHobbyist robotics
A4950DC brushed motorSimple motor control
A4953DC brushed, full bridgeH-bridge applications

Hall Sensors

SeriesTypeUse Case
A1324/5/6Linear, ratiometricPosition sensing, current sensing
A1301/2Linear, analog outputProximity sensing
AH33xxHall switch, latchingRPM measurement, position detection

Handler Implementation Notes

Package Code Extraction

// Current sensors use letter codes after series number
// ACS712ELCTR -> ELC = SOIC-8
// ACS723LLCTR -> LLC = SOIC-8 (leadless)
// ACS723KLCTR -> KLC = SOIC-8-EP (enhanced thermal pad)

// Motor drivers use suffix codes
// A4988SETTR -> SET = QFN
// A3967SLBT -> SLB = SOIC-24

// Hall sensors use suffix codes
// A1324LUA -> LUA = SIP-3
// A1324LLH -> LLH = SOT-23

Series Extraction

// Current sensors: Extract full ACSxxx or ACS3xxxx
// ACS712ELCTR-05B-T -> ACS712
// ACS37612LLCATR-030B5-T -> ACS37612

// Motor drivers: Extract Axxxx (5 chars)
// A4988SETTR-T -> A4988
// A3967SLBT -> A3967

// Hall sensors: Extract A1xxx (5 chars) or AHxxxx (6 chars)
// A1324LUA-T -> A1324
// AH3362Q -> AH3362

Related Files

  • Handler:
    manufacturers/AllegroHandler.java
  • Component types:
    SENSOR_CURRENT
    ,
    MOTOR_DRIVER
    ,
    HALL_SENSOR
    ,
    LED_DRIVER
    ,
    SENSOR
    ,
    IC
  • Test:
    handlers/AllegroHandlerTest.java

Learnings & Edge Cases

  • ACS712 is extremely common - Found in nearly every Arduino/hobbyist current sensing project
  • A4988 is the de facto standard - Used in most 3D printers (Prusa, Creality, etc.)
  • Package code position varies - Current sensors embed it in part number, motor drivers use suffixes
  • LLC vs ELC - Both are SOIC-8; LLC is leadless variant with same footprint
  • KLC = Enhanced thermal - SOIC-8-EP with exposed thermal pad for better heat dissipation
  • TR suffix - Appears before final -T suffix, indicates tape and reel (e.g., ELCTR = ELC + TR)
  • -T suffix meaning varies - Can mean tape/reel OR Pb-free; Allegro uses it for both
  • Current rating codes - B = bidirectional, U = unidirectional, A often appears in newer sensors
<!-- Add new learnings above this line -->