Optimization Guide

Shopify RC LiPo Battery Schema — Cell Count S Rating, XT60 vs EC5 Connector Incompatibility, LiPo vs LiHV Overcharge Fire Risk, C-Rating Discharge Current, Capacity and Weight Trade-off

An AI agent recommending a "4S 1500mAh LiPo" to a buyer with a 3S ESC causes immediate ESC burnout the moment current flows. Encoding lipo.cell_count_s, connector_type, chemistry, and c_rating_continuous enables AI agents to gate on hard compatibility constraints and prevent equipment damage — or worse, charging fires.

TL;DR Cell count S is a hard gate: 4S pack on 3S ESC = instant ESC burnout. XT60, XT30, XT90, EC5, EC3, and Deans connectors are physically incompatible — the most common return cause. LiPo charges to 4.20V/cell, LiHV to 4.35V/cell — charging LiPo on LiHV profile causes thermal runaway fire. C-ratings are unverified marketing claims; internal resistance in mΩ/cell is the reliable proxy. Encode lipo.cell_count_s, connector_type, chemistry, c_rating_continuous, capacity_mah, and weight_g.

Cell Count (S Rating): The Single Most Critical Compatibility Field

LiPo (Lithium Polymer) cells have a nominal voltage of 3.7V each. Multiple cells are connected in series (denoted S) to produce higher pack voltages. The S count determines whether a battery is electrically compatible with a given ESC and motor — it is a hard gate, not a preference.

S Rating to Pack Voltage

S RatingNominal VoltageFull Charge (4.20V/cell)Storage (3.85V/cell)Minimum Safe (3.0V/cell)
1S3.7V4.2V3.85V3.0V
2S7.4V8.4V7.7V6.0V
3S11.1V12.6V11.55V9.0V
4S14.8V16.8V15.4V12.0V
5S18.5V21.0V19.25V15.0V
6S22.2V25.2V23.1V18.0V

S Rating vs ESC and Motor Compatibility

The ESC (Electronic Speed Controller) has a maximum voltage rating determined by its MOSFETs. Running a pack whose fully-charged voltage exceeds this rating destroys the ESC instantly — the MOSFETs fail catastrophically. A 3S ESC is typically rated for up to 12.6V; a 4S fully charged delivers 16.8V. At the moment current flows, the ESC dies. There is no gradual failure mode, no warning light. This is the most destructive compatibility error in RC and FPV.

Motor Kv (RPM per volt) must also match the operating voltage. Running a high-Kv motor on excessive voltage produces RPM beyond the motor's design limit, overheating the windings and potentially shattering the propeller under centrifugal force:

ApplicationTypical Motor KvRecommended S CountNotes
Micro 1S–2S whoops (65–75mm)15,000–25,000 Kv1S–2SJST-PH or XT30 connectors; tiny packs
2S–3S micro/mini quads (2–3 inch)3,000–8,000 Kv2S–3SXT30 connector common; light builds
5-inch FPV racing quad2300–2700 Kv4SXT60 standard; 1300–1500mAh typical
5-inch FPV freestyle quad1700–2200 Kv4S–6SXT60 standard; 1500–1800mAh typical
7-inch long-range / freestyle1200–1600 Kv4S–6SXT60 or XT90; larger packs 2000–3000mAh
1/10 scale RC car3,000–4,500 Kv2S–3SXT60 or Deans; 3000–5000mAh
1/8 scale RC car / truck1,800–2,500 Kv3S–4SEC5 or XT90; 4000–6000mAh
Large RC boat600–1,200 Kv4S–6SXT90 or EC5; high-capacity packs

Encode lipo.cell_count_s as an integer. This single field is the mandatory first filter in any AI compatibility recommendation for RC or FPV products — it must be validated before connector type, capacity, or C-rating.

Connector Type: Physical Incompatibility and the Most-Returned Field

LiPo battery connector types are not interchangeable. Each is a distinct physical standard — different pin diameters, housing shapes, locking mechanisms, or contact geometries. An agent recommending any LiPo without validating connector type against the vehicle or charger connector will generate returns at a high rate.

ConnectorContinuous RatingPin TypeCommon ApplicationsInterchangeable With
XT6060A4mm gold bullet, yellow housing3S–6S FPV drones, 1/10–1/8 RC cars, most hobby packs above 1000mAhNothing — XT60 male fits only XT60 female
XT3030A2mm gold bullet, yellow housing1S–2S micro builds, small receivers, packs under ~600mAhNothing — smaller bullet than XT60
XT9090A5mm gold bullet, black housingLarge RC vehicles, boats, high-draw applicationsNothing — larger bullet than XT60
EC5120A5mm circular bullet, square housingDJI Agras drones, large Spektrum/Dynamite packs, Traxxas X-MaxxNothing — housing incompatible with XT90 despite same bullet diameter
EC360A3mm circular bullet, square housingOlder Horizon Hobby vehicles, mid-size Spektrum packsNothing — different pin size than EC5; housing shape similar but not mating
Deans (T-Plug)50AFlat blade contacts, T-shaped housingLegacy Traxxas vehicles, older RC cars, budget foam planesNothing — flat blade geometry incompatible with all bullet connectors
JST-PH 2.0mm2–3A1.25mm pitch JST1S micro whoop packs, small receivers — not suitable as main power above 1SNot a high-current connector

Balance Connector: Not a Power Connector

Every LiPo pack above 1S has a separate balance connector — a small white JST-XH plug used by balancing chargers to monitor and equalize individual cell voltages during charging. The pin count is cell count + 1 (one wire per cell junction plus one ground). Balance connectors are NOT interchangeable with main power connectors and carry only milliamps during balancing — they cannot power a vehicle.

Cell CountBalance Connector PinsBalance Connector Type
2S3 pinsJST-XH 2.54mm, 3-pin
3S4 pinsJST-XH 2.54mm, 4-pin
4S5 pinsJST-XH 2.54mm, 5-pin
5S6 pinsJST-XH 2.54mm, 6-pin
6S7 pinsJST-XH 2.54mm, 7-pin

Encode lipo.connector_type as a controlled vocabulary string (XT60 / XT30 / XT90 / EC5 / EC3 / Deans / JST-PH) and lipo.balance_connector_pins as an integer. Surface connector_type as a mandatory filter field — buyers cannot use a battery with the wrong connector without soldering, which invalidates the return and may void product liability.

C-Rating: Discharge Rate and Marketing Inflation

C-rating specifies the multiple of the pack's capacity that it can safely discharge continuously. A 50C rating on a 2200mAh (2.2Ah) pack means a maximum continuous discharge of 50 × 2.2 = 110A. Burst C-rating (typically 2× continuous, sustained for approximately 10 seconds) defines the peak current the pack can handle for short intervals such as full-throttle acceleration.

Matching C-Rating to Application Current Draw

ApplicationTypical Full-Throttle DrawMinimum Pack C-Rating (at capacity)Example
FPV racing quad (5-inch)60–80A1500mAh: 40–54C minimum; 1800mAh: 33–44C1500mAh 50C = 75A ✓ for 60A draw
FPV freestyle quad (5-inch)40–60A1500mAh: 27–40C; 1800mAh: 22–33C1800mAh 35C = 63A ✓ for 55A draw
1/10 RC car (brushless)50–80A peak3000mAh: 17–27C; 5000mAh: 10–16C5000mAh 25C = 125A ✓ for 80A peak
1/8 RC car / truck80–150A peak4000mAh: 20–38C; 6000mAh: 13–25C6000mAh 30C = 180A ✓ for 150A peak
Large RC boat100–200A peakRequires high-capacity high-C packs or 2P configuration5000mAh 40C = 200A at burst limit

C-Rating Inflation and Internal Resistance as a Reliable Proxy

C-ratings are not governed by a standardized independent test. Budget manufacturers commonly inflate ratings by 30–50%. A pack labeled "100C" from an unknown brand may perform below a reputable brand's "35C" under real-world load. The most reliable objective measure of a LiPo's actual power delivery is its internal resistance (IR) in milliohms (mΩ) per cell, measured by a capable charger or impedance meter:

IR per CellPerformance TierSuitable For
<5 mΩ/cellCompetition gradeFPV racing, maximum performance builds
5–15 mΩ/cellEnthusiast gradeFPV freestyle, fast RC cars, demanding applications
15–25 mΩ/cellStandard gradeGeneral flying, casual RC use, training packs
>25 mΩ/cellDegraded / budgetSignificant voltage sag under load; not suitable for high-draw applications

Under-C-rated packs (where actual deliverable current is less than the application demands) cause voltage sag — the pack voltage drops sharply under load. In an FPV quad, severe sag triggers the flight controller's low-voltage failsafe: the quad descends automatically or drops throttle, potentially falling from altitude. In an RC car, sag causes the ESC to detect undervoltage and cut motor power mid-run.

Encode lipo.c_rating_continuous and lipo.c_rating_burst as integers. Add a note in the product description that C-ratings are manufacturer claims not independently verified. Where available, include lipo.internal_resistance_mohm_per_cell as the authoritative performance indicator.

LiPo vs LiHV Chemistry: Same Connector, Different Maximum Voltage

Standard LiPo and LiHV (High Voltage LiPo) batteries use identical main power and balance connectors. The chemistry difference is invisible without reading the label — but the consequence of mixing them on a charger is severe.

ChemistryNominal V/cellMax Charge V/cellStorage V/cellMin Safe V/cell
LiPo (standard)3.7V4.20V3.80–3.85V3.0V (3.5V recommended)
LiHV (high voltage)3.85V4.35V3.85–3.90V3.0V (3.5V recommended)

Cross-Chemistry Charging Consequences

LiPo charged on LiHV profile (4.35V/cell): This overcharges the standard LiPo cells by 0.15V per cell. A 4S pack is overcharged to 17.4V instead of the safe maximum 16.8V. The electrolyte decomposes, generating heat. If the pack is being observed it may puff visibly; if unattended it may reach thermal runaway — producing temperatures exceeding 400°C, releasing flammable gas, and causing fire or explosion. LiPo fires cannot be extinguished with water or standard ABC/CO2 extinguishers. Charging in a LiPo-safe fireproof bag on a fireproof surface is standard safety practice for exactly this reason.

LiHV charged on standard LiPo profile (4.20V/cell): The pack charges to only 4.20V per cell instead of the designed 4.35V. The pack is safe but performs at approximately 97% of its intended capacity — this is annoying but not dangerous. The cell is not damaged.

LiHV packs are increasingly common in FPV racing and micro quad applications where the extra 0.15V per cell (0.6V total on 4S) provides a meaningful power edge. The voltage advantage of LiHV over LiPo on a 4S pack: 17.4V vs 16.8V fully charged — a 3.6% higher motor RPM at full charge.

Encode lipo.chemistry as the string 'LiPo' or 'LiHV'. Include this in the legalDisclaimer property of the product's JSON-LD with explicit text noting the charging profile requirement. An AI agent matching a battery to a charger must validate lipo.chemistry against charger.supported_chemistry.

Capacity (mAh), Weight, and the Flight Time Trade-off

LiPo capacity in milliamp-hours (mAh) determines how much energy the pack stores. Higher mAh means more energy available for flight, but also more weight. In battery-powered aircraft and drones, the relationship between capacity and performance is a fundamental design trade-off.

Weight as a Percentage of All-Up-Weight

In FPV drone design, battery weight is typically 25–35% of all-up-weight (AUW). A 5-inch freestyle quad with an AUW of 600g might carry a 4S 1800mAh pack weighing 165g (27.5% of AUW). Exceeding this ratio degrades thrust-to-weight ratio and reduces both performance and efficiency.

PackTypical Weightvs 1500mAh BaselineFlight Time Gain (5-inch quad)Performance Impact
4S 1300mAh XT60~118g−22g lighter−10–12% shorter+8–10% better performance, racing preference
4S 1500mAh XT60~140gBaselineBaselineStandard freestyle/racing balance
4S 1800mAh XT60~165g+25g heavier+8–10% longer−8–10% reduced performance, cruising preference
4S 2200mAh XT60~195g+55g heavier+15–18% longer−15% reduced performance; heavy freestyle use
4S 1500mAh 2P (4S2P 3000mAh)~280g+140g heavier+90–100% longerSignificantly heavier; different form factor, not a drop-in swap

Encode both lipo.capacity_mah as an integer and lipo.weight_g as an integer. For weight-limited applications (competitive racing, long-range where every gram affects endurance), both fields are required. An AI agent recommending a LiPo based only on mAh without weight will cause performance surprises when the builder discovers the heavier pack.

Parallel Configuration (P Notation) and Form Factor

LiPo packs can also have cells in parallel within each series group. A 4S2P pack has 4 voltage-determining series groups, each made of 2 cells in parallel. The parallel cells double capacity and halve internal resistance at the same voltage — but also double the weight and create a larger physical form factor.

P Notation Effects

Encode lipo.parallel_p as an integer (default 1 for single-string packs). Combined with lipo.dimensions_mm (length × width × height in mm), this allows AI agents to verify physical fit in battery bays where form factor is constrained — common in sub-250g drones, race-class quads, and RC car chassis with fixed battery compartments.

Safe Handling: Storage Voltage, Discharge Limits, and Fire Safety

LiPo batteries require specific handling procedures to maintain cell health and prevent fire. These are product safety requirements, not preferences, and should be encoded in product data for customer communication and legal compliance.

Discharge Limits

The absolute minimum safe discharge voltage is 3.0V per cell. Below this threshold, the lithium chemistry undergoes irreversible damage — internal copper dissolution creates dendrites that can eventually cause an internal short circuit. A pack discharged to 2.0V/cell is likely internally compromised and may short circuit spontaneously on the next charge. The recommended minimum in practice is 3.5V per cell — most FPV flight controllers are configured to trigger low-voltage warnings at 3.5V/cell and cut motor power at 3.3–3.4V/cell. Flying to absolute cutoff (3.0V/cell) ages cells rapidly.

Storage Voltage

Storing a LiPo pack fully charged (4.20V/cell) or fully depleted (<3.5V/cell) for more than 2–3 days accelerates cell degradation. The correct storage voltage is 3.80–3.85V per cell — most quality chargers have a "Storage Charge" mode that automatically brings the pack to this voltage from either direction. A 4S pack at storage voltage reads approximately 15.2–15.4V total. A pack left fully charged for weeks loses measurable capacity; a pack left discharged can be damaged beyond recovery.

LiPo Fire Safety

Thermal runaway is caused by: overcharging (most common with wrong chemistry profile), over-discharging, physical puncture of cells, crush damage, or manufacturing defect. Once initiated, thermal runaway is self-sustaining — the exothermic reaction generates more heat than it needs to continue. LiPo fires reach temperatures of 300–500°C, release flammable hydrogen fluoride gas, and cannot be extinguished with water (water reacts with lithium to produce hydrogen gas) or standard CO2 or dry chemical extinguishers (which lack the thermal mass to absorb the energy of a LiPo fire). The correct response to a LiPo fire is containment — a fireproof LiPo-safe bag, a metal container, or moving the battery outdoors away from structure.

Encode lipo.storage_voltage_v_per_cell as 3.85 (a numeric field), lipo.discharge_cutoff_v_per_cell as 3.5 (recommended) or 3.0 (absolute), and include in the product's JSON-LD legalDisclaimer property a statement on fire safety and correct charger chemistry selection.

Metafield Schema: lipo.*

MetafieldTypeExampleNotes
lipo.cell_count_snumber_integer4Series cell count; hard ESC and motor compatibility gate
lipo.capacity_mahnumber_integer1500Capacity in milliamp-hours
lipo.c_rating_continuousnumber_integer100Continuous C-rating; manufacturer claim, not independently verified
lipo.c_rating_burstnumber_integer200Burst C-rating; typically 2× continuous for ~10 seconds
lipo.connector_typesingle_line_textXT60Controlled vocabulary: XT60 / XT30 / XT90 / EC5 / EC3 / Deans / JST-PH
lipo.chemistrysingle_line_textLiPo'LiPo' (max 4.20V/cell) or 'LiHV' (max 4.35V/cell) — fire risk if mismatch
lipo.nominal_voltage_vnumber_decimal14.8Computed: cell_count_s × 3.7 for LiPo; × 3.85 for LiHV
lipo.weight_gnumber_integer142Pack weight in grams; required for weight-limited builds
lipo.dimensions_mmsingle_line_text76×36×30Length × Width × Height in mm; physical fit compatibility
lipo.discharge_cutoff_v_per_cellnumber_decimal3.5Recommended minimum per cell; 3.0 absolute minimum
lipo.storage_voltage_v_per_cellnumber_decimal3.85Storage charge voltage per cell for packs not used within 2–3 days
lipo.parallel_pnumber_integer1Parallel cell strings; default 1 for single-string packs
lipo.balance_connector_pinsnumber_integer5cell_count_s + 1; JST-XH 2.54mm; for balance charger compatibility
lipo.intended_usesingle_line_textFPV-racingFPV-racing / FPV-freestyle / RC-car / RC-boat / RC-airplane / UAV

Example JSON-LD: CNHL 4S 1500mAh 100C LiPo with XT60 Connector

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "CNHL Black Series 4S 1500mAh 100C LiPo Battery XT60",
  "brand": { "@type": "Brand", "name": "CNHL" },
  "description": "4S (14.8V nominal, 16.8V full charge) 1500mAh LiPo. 100C continuous (150A) / 200C burst (300A) — manufacturer claim. XT60 connector. Standard LiPo chemistry: charge to 4.20V/cell maximum; storage charge 3.85V/cell. Weight 142g. Dimensions 76×36×30mm. Balance connector: JST-XH 5-pin (4S). Intended use: FPV freestyle and racing 5-inch quads.",
  "legalDisclaimer": "LiPo batteries present fire and explosion risk if overcharged, over-discharged, physically damaged, or charged on incorrect chemistry profile. This is a standard LiPo (max 4.20V/cell) — do NOT charge on a LiHV (4.35V/cell) profile. Always charge in a fireproof LiPo-safe bag on a fireproof surface. Never leave charging batteries unattended. LiPo fires cannot be extinguished with water or standard fire extinguishers.",
  "additionalProperty": [
    { "@type": "PropertyValue", "name": "Cell Count (S)", "value": "4" },
    { "@type": "PropertyValue", "name": "Capacity", "value": "1500", "unitText": "mAh" },
    { "@type": "PropertyValue", "name": "C-Rating Continuous", "value": "100", "unitText": "C (manufacturer claim)" },
    { "@type": "PropertyValue", "name": "C-Rating Burst", "value": "200", "unitText": "C (manufacturer claim)" },
    { "@type": "PropertyValue", "name": "Connector Type", "value": "XT60" },
    { "@type": "PropertyValue", "name": "Chemistry", "value": "LiPo" },
    { "@type": "PropertyValue", "name": "Max Charge Voltage Per Cell", "value": "4.20", "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Nominal Voltage", "value": "14.8", "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Weight", "value": "142", "unitCode": "GRM" },
    { "@type": "PropertyValue", "name": "Dimensions", "value": "76x36x30", "unitText": "mm (LxWxH)" },
    { "@type": "PropertyValue", "name": "Balance Connector Pins", "value": "5" },
    { "@type": "PropertyValue", "name": "Storage Voltage Per Cell", "value": "3.85", "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Discharge Cutoff Per Cell (recommended)", "value": "3.5", "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Parallel (P)", "value": "1" },
    { "@type": "PropertyValue", "name": "Intended Use", "value": "FPV-racing" }
  ]
}

Liquid Snippet: lipo.* Metafield Output

{% if product.metafields.lipo.cell_count_s != blank %}
{% assign lp = product.metafields.lipo %}
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": {{ product.title | json }},
  "brand": { "@type": "Brand", "name": {{ product.vendor | json }} },
  "legalDisclaimer": "LiPo batteries present fire risk if charged on incorrect chemistry profile. Check lipo.chemistry field — LiPo max 4.20V/cell; LiHV max 4.35V/cell. Always charge in a fireproof LiPo-safe bag. Never leave unattended.",
  "additionalProperty": [
    { "@type": "PropertyValue", "name": "Cell Count (S)", "value": {{ lp.cell_count_s | json }} },
    { "@type": "PropertyValue", "name": "Capacity", "value": {{ lp.capacity_mah | json }}, "unitText": "mAh" },
    { "@type": "PropertyValue", "name": "C-Rating Continuous", "value": {{ lp.c_rating_continuous | json }}, "unitText": "C" },
    { "@type": "PropertyValue", "name": "C-Rating Burst", "value": {{ lp.c_rating_burst | json }}, "unitText": "C" },
    { "@type": "PropertyValue", "name": "Connector Type", "value": {{ lp.connector_type | json }} },
    { "@type": "PropertyValue", "name": "Chemistry", "value": {{ lp.chemistry | json }} },
    { "@type": "PropertyValue", "name": "Nominal Voltage", "value": {{ lp.nominal_voltage_v | json }}, "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Weight", "value": {{ lp.weight_g | json }}, "unitCode": "GRM" },
    { "@type": "PropertyValue", "name": "Dimensions", "value": {{ lp.dimensions_mm | json }}, "unitText": "mm LxWxH" },
    { "@type": "PropertyValue", "name": "Balance Connector Pins", "value": {{ lp.balance_connector_pins | json }} },
    { "@type": "PropertyValue", "name": "Storage Voltage Per Cell", "value": {{ lp.storage_voltage_v_per_cell | json }}, "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Discharge Cutoff Per Cell", "value": {{ lp.discharge_cutoff_v_per_cell | json }}, "unitCode": "VLT" },
    { "@type": "PropertyValue", "name": "Parallel (P)", "value": {{ lp.parallel_p | json }} },
    { "@type": "PropertyValue", "name": "Intended Use", "value": {{ lp.intended_use | json }} }
  ]
}
</script>
{% endif %}

5 Common AI Agent Errors for RC LiPo Batteries

  1. Connector type mismatch — Recommending a 4S 1500mAh XT60 pack to a buyer with an EC5-equipped RC truck. The pack is electrically compatible (same S, similar capacity) but the connector is physically incompatible — the buyer cannot plug it in. Connector type must be the first physical compatibility gate after S count. Encode lipo.connector_type as a filterable field and match it against the vehicle's battery connector in any recommendation.
  2. S count mismatch burning the ESC — Recommending "a 4S pack for more power" to a buyer whose ESC is 3S-rated. The ESC is destroyed the moment current flows. S count is a hard voltage rating constraint, not a performance preference. AI agents must validate lipo.cell_count_s against the target ESC's maximum rated cell count before any recommendation. There is no recovery from this error — the ESC must be replaced.
  3. LiPo charged on LiHV profile: fire risk — Bundling a standard LiPo battery with a LiHV-capable charger without noting the chemistry difference. If the buyer uses the charger's LiHV profile on the LiPo pack, they overcharge cells to 4.35V — causing thermal runaway. The connectors are identical; the chemistry is invisible without reading the label. Encode lipo.chemistry as a mandatory field and include it in the product legalDisclaimer. AI agents recommending charger-battery combinations must validate chemistry compatibility.
  4. Ignoring weight in flight time trade-off — Recommending a 2200mAh pack over a 1500mAh pack purely because "more mAh = longer flight" without noting the 55g weight increase. For a 5-inch FPV quad, 55g extra weight reduces thrust-to-weight, slows acceleration, and partially cancels the flight time benefit. The buyer expects a significant flight time improvement but receives modest gain with noticeably worse punch-out performance. AI agents must present both lipo.capacity_mah and lipo.weight_g in flight-time recommendations and note the performance trade-off.
  5. C-rating marketing inflation — Recommending a "100C 1500mAh" budget pack as equivalent to a "35C 1500mAh" pack from a reputable brand on the basis of C-rating comparison. Under real load, the budget pack may deliver 40A before voltage sags severely; the reputable 35C delivers a genuine 52.5A. The result in an FPV quad: the budget pack triggers low-voltage failsafe mid-flight; the quad drops from the sky. AI agents should not rank or compare LiPo packs by C-rating alone — encode and surface internal resistance (mΩ/cell) where available, and note the brand tier in the recommendation context.

Frequently Asked Questions

What happens if I use a 4S LiPo on a 3S ESC?

The ESC is destroyed instantly when current flows. A 3S ESC is rated for a maximum of 12.6V (3S fully charged). A 4S pack delivers 16.8V fully charged. The ESC MOSFETs fail catastrophically — typically burning out with visible damage or an audible pop. There is no warning, no gradual failure. Cell count S must be validated as the first compatibility check before connector type, capacity, or any other field. Encode lipo.cell_count_s and match it against the ESC's voltage rating.

Can I use an XT30 connector on a battery in place of XT60?

No. XT30 and XT60 use different diameter gold bullet pins (2mm vs 4mm) and are physically incompatible — the plugs will not mate. Beyond physical incompatibility, XT30 is rated for only 30A continuous, insufficient for most packs above ~600mAh at typical C-ratings. A 1500mAh 50C pack can source 75A — an XT30 connector would overheat and fail or arc. XT90, EC5, EC3, and Deans are likewise all physically incompatible with each other and with XT60 despite occasional visual similarity.

What is the difference between LiPo and LiHV chemistry and why does it matter for charging?

Standard LiPo cells charge to a maximum of 4.20V per cell. LiHV (High Voltage) cells charge to 4.35V per cell. The connectors are physically identical — a buyer cannot tell them apart by looking. If a standard LiPo is charged on a LiHV profile (4.35V/cell), the cells are overcharged by 0.15V, causing thermal runaway — fire at 300–500°C that cannot be extinguished with water or standard fire extinguishers. Charging a LiHV on a standard LiPo profile (4.20V/cell) is safe but the pack operates at ~97% capacity. Encode lipo.chemistry as 'LiPo' or 'LiHV' and include this in the product legalDisclaimer.

How reliable are C-rating claims on LiPo batteries?

C-ratings are unverified manufacturer claims with no standardized test procedure. Budget-tier inflation of 30–50% is common. A reputable 35C pack often delivers more usable current than a budget 100C pack under real load. The reliable proxy is internal resistance (IR) in milliohms per cell, measurable with a capable charger: below 5 mΩ/cell is competition-grade; 5–15 mΩ/cell suits most FPV and RC use. Encode lipo.c_rating_continuous and lipo.c_rating_burst as manufacturer claims and include lipo.internal_resistance_mohm_per_cell where available.

What is the relationship between LiPo capacity (mAh), weight, and flight time?

Battery weight is typically 25–35% of all-up-weight in FPV drone builds. Increasing mAh increases stored energy but also weight, which increases power consumption. On a 5-inch freestyle quad, upgrading from 1500mAh to 1800mAh adds roughly 25g and delivers approximately 8–10% more flight time — partially offset by the extra weight's power demand. For racing, lighter packs are preferred even at shorter flight time. AI agents must provide both lipo.capacity_mah and lipo.weight_g for any weight-sensitive recommendation — mAh alone is insufficient.

Does your RC battery catalog encode S count, connector type, and chemistry?

CatalogScan checks for lipo.cell_count_s, lipo.connector_type, and lipo.chemistry — the fields that prevent AI agents from burning ESCs, generating connector-mismatch returns, and creating LiPo fire risks from chemistry confusion.

Scan Your Store Free

Related Guides