> ## Documentation Index
> Fetch the complete documentation index at: https://doc.sensolus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Batterijpakketten

> Gebruik deze pagina om het specifieke batterijpakket te identificeren dat nodig is om de interne batterij van een tracker te vervangen.

export const HeaderBadge = ({type, checkDms = false}) => {
  function addGroupBadge(h1Id) {
    const h1Element = document.getElementById(h1Id);
    if (!h1Element) {
      console.error(`Element with ID "${h1Id}" not found`);
      return;
    }
    if (h1Element.querySelector('.header-badge')) {
      console.warn('Header badge already exists on this element');
      return;
    }
    const badge = document.createElement('span');
    badge.className = 'header-badge';
    var badgeText;
    var badgeColor;
    switch (type) {
      case 'public':
        badgeText = 'Public';
        badgeColor = '#858585ff';
        break;
      case 'end-user':
        badgeText = 'End-User';
        badgeColor = '#0071a1';
        break;
      case 'multi-org':
        badgeText = 'Multi-Org';
        badgeColor = '#0071a1';
        break;
      case 'partner':
        badgeText = 'Partner';
        badgeColor = '#0071a1';
        break;
      case 'partner-pricing-eu':
        badgeText = 'Partner-EU';
        badgeColor = '#0071a1';
        break;
      case 'partner-pricing-us':
        badgeText = 'Partner-US';
        badgeColor = '#0071a1';
        break;
      case 'partner-pricing-world':
        badgeText = 'Partner-World';
        badgeColor = '#0071a1';
        break;
      case 'sensolus-internal':
        badgeText = 'Sensolus only';
        badgeColor = '#ffa858';
        break;
      default:
        badgeText = type;
        badgeColor = '#ffa858';
    }
    badge.textContent = badgeText;
    badge.style.cssText = `
        background-color: ${badgeColor};
        color: white;
        padding: 0.3em 0.8em 0.3em 0.8em;
        border-radius: 6px;
        font-size: 0.4em;
        margin-left: 20px;
        vertical-align: middle;
    `;
    h1Element.appendChild(badge);
  }
  function checkDocumentationServerAccess(type) {
    fetch('https://cloud.sensolus.com/documentation/user', {
      method: 'GET',
      headers: {
        'Accept': 'application/json'
      },
      credentials: 'include'
    }).then(response => {
      if (!response.ok) {
        console.error('Could not fetch documentation server user:', response);
      }
      return response.json();
    }).then(user => {
      const compatibleGroups = {
        "NORMAL": ["end-user", "public"],
        "PUBLIC": ["public"],
        "PARTNER": ["partner", "public", "end-user", "multi-org"],
        "MULTI_ORG": ["multi-org", "public", "end-user"],
        "SYSTEM": ["public", "end-user", "multi-org", "partner", "sensolus-internal"]
      };
      const allowedGroups = compatibleGroups[user.orgType] || [];
      const compatiblePriceListGroups = {
        "EU": ["partner-pricing-eu"],
        "US": ["partner-pricing-us"],
        "WORLD": ["partner-pricing-eu", "partner-pricing-us", "partner-pricing-world"]
      };
      allowedGroups.push(...compatiblePriceListGroups[user.orgType === "SYSTEM" ? "WORLD" : user.priceList] || []);
      if (!allowedGroups.includes(type)) {
        if (user.orgType === 'PUBLIC') {
          window.location.href = '/login?redirect=' + encodeURIComponent(window.location.pathname);
        } else {
          window.location.href = '/logout';
        }
      }
      addGroupBadge("page-title");
    }).catch(error => {
      console.error('Could not fetch documentation server user:', error);
      addGroupBadge("page-title");
    });
  }
  useEffect(() => {
    console.info("adding badge");
    addGroupBadge("page-title");
  });
  useEffect(() => {
    console.info("checking server access for type" + type);
    if (type && type !== 'public' && checkDms) {
      checkDocumentationServerAccess(type);
    }
  }, [type]);
  return <></>;
};

<HeaderBadge type={'public'} checkDms={false} />

## Batterijvervanging

In onderstaande tabel vindt u welk batterijpakket u moet bestellen ter vervanging.

| Apparaat                             | Vervangingsbatterijpakket                                           |
| ------------------------------------ | ------------------------------------------------------------------- |
| SNT2                                 | [BAT 8202](/nl/docs/spec_sheets/accessories/battery_packs#bat-8202) |
| SNT3 ULTRA/TRACK 1000/TRACK 1001     | [BAT 8201](/nl/docs/spec_sheets/accessories/battery_packs#bat-8201) |
| TRACK 1100/TRACK 1140/TRACK 1000 MK2 | [BAT 8205](/nl/docs/spec_sheets/accessories/battery_packs#bat-8205) |
| TRACK 1101/TRACK 1141                | [BAT 8206](/nl/docs/spec_sheets/accessories/battery_packs#bat-8206) |
| TRACK 1210                           | [BAT 8207](/nl/docs/spec_sheets/accessories/battery_packs#bat-8207) |
| ZA 3510                              | [BAT 8207](/nl/docs/spec_sheets/accessories/battery_packs#bat-8207) |
| ZA 3505                              | [BAT 8205](/nl/docs/spec_sheets/accessories/battery_packs#bat-8205) |
| TRACK 1105/TRACK 1215/ZA 3515        | [BAT 8209](/nl/docs/spec_sheets/accessories/battery_packs#bat-8209) |
| TRACK 1105 IF                        | [BAT 8208](/nl/docs/spec_sheets/accessories/battery_packs#bat-8208) |
| TRACK 1115/TRACK 1115 WL             | [BAT 8210](/nl/docs/spec_sheets/accessories/battery_packs#bat-8210) |

## Overzicht batterijpakketten

### BAT 8210

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/g3bfYlGADcjuA_wC/docs/spec_sheets/accessories/images/BAT_8210.png?fit=max&auto=format&n=g3bfYlGADcjuA_wC&q=85&s=d583e443beefdd0949402c6a7fa510f9" style={{height: "100px", width: "auto"}} width="400" height="400" data-path="docs/spec_sheets/accessories/images/BAT_8210.png" />                                         |
| Spanning               | 3.0 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| Capaciteit             | 4600 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| Aantal cellen          | 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| Celgrootte/type        | CP954442 (pouchcel)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" /> |

### BAT 8209

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/L5xy1mnuzPcAjEWR/docs/spec_sheets/accessories/images/BAT_8209.png?fit=max&auto=format&n=L5xy1mnuzPcAjEWR&q=85&s=db05d732a427f440b116e4c165625c02" style={{height: "100px", width: "auto"}} width="720" height="469" data-path="docs/spec_sheets/accessories/images/BAT_8209.png" />                                         |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| Capaciteit             | 10800  mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| Aantal cellen          | 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| Celgrootte/type        | ER17505-3 + UPC1520                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" /> |

### BAT 8208

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/L5xy1mnuzPcAjEWR/docs/spec_sheets/accessories/images/BAT_8208.png?fit=max&auto=format&n=L5xy1mnuzPcAjEWR&q=85&s=724b5847f11450fb91d5a07ae568f259" style={{height: "100px", width: "auto"}} width="709" height="720" data-path="docs/spec_sheets/accessories/images/BAT_8208.png" />                                         |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| Capaciteit             | 5200  mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Aantal cellen          | 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| Celgrootte/type        | ER14505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" /> |

### BAT 8207

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/BAT_8207.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=39ca6c0260b8a4b5999231b7d394a0fd" style={{height: "100px", width: "auto"}} width="283" height="206" data-path="docs/spec_sheets/accessories/images/BAT_8207.png" />                                         |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| Capaciteit             | 12000 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Aantal cellen          | 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| Celgrootte/type        | ER18505 HCB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" /> |

### BAT 8206

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/BAT_8206.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=d1de402ea2003a46d7199b1f5dc6df91" style={{height: "100px", width: "auto"}} width="742" height="513" data-path="docs/spec_sheets/accessories/images/BAT_8206.png" />                                         |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| Capaciteit             | 10500 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Aantal cellen          | 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| Celgrootte/type        | ER18505M HCB                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" /> |

### BAT 8205

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/devices_BAT_8205.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=b8d445be75886691539fb143f7b6cfcf" style={{height: "100px", width: "auto"}} width="504" height="386" data-path="docs/spec_sheets/accessories/images/devices_BAT_8205.png" /> |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| Capaciteit             | 8400 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Aantal cellen          | 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| Celgrootte/type        | ER17505M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" />                         |

### BAT 8204

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/devices_BAT_8204.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=ab3d30d5f17535da692557f824797da4" style={{height: "100px", width: "auto"}} width="504" height="386" data-path="docs/spec_sheets/accessories/images/devices_BAT_8204.png" /> |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| Capaciteit             | 5600 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Aantal cellen          | 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Lithiumgehalte >2 gram | Nee                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| Celgrootte/type        | ER17505M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" />                         |

### BAT 8203

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/devices_BAT_8203.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=86d01cd0e3f75bc979ed650f74a337fd" style={{height: "100px", width: "auto"}} width="504" height="386" data-path="docs/spec_sheets/accessories/images/devices_BAT_8203.png" /> |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| Capaciteit             | 10500 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Aantal cellen          | 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| Celgrootte/type        | ER17505                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| Batterij-PCB-connector | kort wit <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_white.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=946d2577acff857dd89d1f48280f48f6" class="inline-icon" width="57" height="20" data-path="docs/spec_sheets/accessories/images/connector_white.png" />                         |

### BAT 8202

|                        |                      |
| ---------------------- | -------------------- |
| Foto                   | N/A                  |
| Spanning               | 3.6 V                |
| Capaciteit             | N/A                  |
| Aantal cellen          | 2                    |
| Lithiumgehalte >2 gram | Nee                  |
| Celgrootte/type        | ER17505-M            |
| Geschikt voor:         | TRACK 1000 in-flight |

### BAT 8201

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/devices_BAT_8201.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=2a3836b6381c396df9442b1d2ceb0ebc" style={{height: "100px", width: "auto"}} width="459" height="459" data-path="docs/spec_sheets/accessories/images/devices_BAT_8201.png" /> |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| Capaciteit             | 8400 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Aantal cellen          | 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Lithiumgehalte >2 gram | Ja                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| Celgrootte/type        | ER17505-M                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Batterij-PCB-connector | lang rood <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/connector_red.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=43be54de7f62d0c1968b79358fd1403e" class="inline-icon" width="85" height="29" data-path="docs/spec_sheets/accessories/images/connector_red.png" />                                        |

### BAT 8200

|                        |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Foto                   | <img src="https://mintcdn.com/sensolus/YIEdQsLzKQopMtjR/docs/spec_sheets/accessories/images/devices_BAT_8200.png?fit=max&auto=format&n=YIEdQsLzKQopMtjR&q=85&s=0f0e1359c7f877bf4d59b45ae9ccfe24" style={{height: "100px", width: "auto"}} width="371" height="911" data-path="docs/spec_sheets/accessories/images/devices_BAT_8200.png" /> |
| Spanning               | 3.6 V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| Capaciteit             | 2600 mAh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Aantal cellen          | 1 (3 per tracker)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| Lithiumgehalte >2 gram | Nee                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| Celgrootte/type        | LS14500                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| Batterij-PCB-connector | geen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |

<AccordionGroup>
  <Accordion title="Battery change manual for trackers (pdf)" icon="file">
    **Description**: <br />
    **Access level**: public<br />
    **Reference**: SDOC-498608282-1378<br />
    **Download**:  [PDF](https://cloud.sensolus.com/documentation/dms/SDOC-498608282-1378)

    <iframe src="https://cloud.sensolus.com/documentation/dms/SDOC-498608282-1378?viewer=true" style={{width: '100%', height: '881px', border: 'none', margin: 0, padding: 0}} />

    <div style={{display: "none"}} data-pdf-text="true">
      Battery change manual for trackers
      [www.sensolus.com](http://www.sensolus.com) | [info@sensolus.com](mailto:info@sensolus.com)
      February 3, 2026
      Order these battery packs as replacements. See the battery packs overview to find the correct battery pack for your device.
      Battery replacement should only be performed by trained personnel.
      Dispose of old batteries according to local regulations.
      Battery replacement procedure
      Step 1: Make sure that the serial
      number and logo are facing the
      right way up. Then turn the
      tracker face down. Unscrew the
      6 screws. Tip: If using a power
      drill, use power setting 7, on low.
      Step 2: Remove the back plate
      and the 6 screws.
      Step 3: Take the module (battery
      pack + battery holder + PCB) out
      of the casing. You might need to
      tilt the casing a bit.
      Step 4: Turn around the module
      (battery pack + battery holder +
      PCB) so the PCB is on top.
      Step 5: Lift the module and move
      the battery pack from the insert
      to the side.
      Step 6: Align the battery pack
      next to the PCB and insert.
      Step 7: Disconnect the battery
      pack from the PCB. Be careful
      when disconnecting the battery
      pack.
      Step 8: Connect the new battery
      pack to the PCB. A green LED
      will flash for some seconds.
      Step 9: Move the battery pack
      back under the insert and PCB
      and flip the module.
      Step 10: Align the battery pack
      onto the insert.
      Step 11: Place the module in the
      tracker. Use the alignment marks
      on the casing. Do not use force.
      There is only one way to put the
      module back in the tracker.
      Step 12: Close the tracker
      carefully. Your tracker is ready to
      use again.
      Indicate battery replaced in platform
      After replacing the battery in the tracker, indicate this in the platform to reset the battery information.
      Go to the tracker details page in the general section. You can search for the tracker or find it in the asset list or asset map. Click
      on the settings button on the far right. Navigate to the Battery tab. Click Replace battery and confirm the action. This will reset
      all battery information.
      Battery replacements
      In the table below you find which battery pack you need to order for replacement.

      Battery change manual for trackers
      [www.sensolus.com](http://www.sensolus.com) | [info@sensolus.com](mailto:info@sensolus.com)
      February 3, 2026
      Device
      Replacement battery pack
      SNT2
      BAT 8202
      SNT3 ULTRA/TRACK 1000/TRACK 1001
      BAT 8201
      TRACK 1100/TRACK 1140/TRACK 1000 MK2
      BAT 8205
      TRACK 1101/TRACK 1141
      BAT 8206
      TRACK 1210
      BAT 8207
      ZA 3510
      BAT 8207
      ZA 3505
      BAT 8205
      TRACK 1105/TRACK 1215/ZA 3515
      BAT 8209
    </div>
  </Accordion>
</AccordionGroup>
