EZ Sign Trouble Shooting

<!-- wp:html -->
<style>
#ezts, #ezts * { box-sizing: border-box; }

#ezts {
  --ezts-navy: #08264f;
  --ezts-blue: #1479bf;
  --ezts-cyan: #38b7e8;
  --ezts-ink: #162033;
  --ezts-muted: #667085;
  --ezts-line: #dfe5ec;
  --ezts-soft: #f5f8fb;
  --ezts-warn: #fff7e6;
  --ezts-danger: #fff3ef;
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 18px 72px;
  color: var(--ezts-ink) !important;
  font-family: inherit;
  line-height: 1.75;
}

#ezts h1,
#ezts h2,
#ezts h3,
#ezts p,
#ezts li,
#ezts a,
#ezts summary,
#ezts strong {
  font-family: inherit;
}

#ezts .ezts-hero {
  background: linear-gradient(135deg, #061b3c 0%, #0d4d79 100%);
  border-radius: 22px;
  padding: clamp(30px, 6vw, 62px);
  margin-bottom: 26px;
}

#ezts .ezts-eyebrow {
  margin: 0 0 9px;
  color: #8fdcff !important;
  -webkit-text-fill-color: #8fdcff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

#ezts .ezts-hero h1 {
  margin: 0 0 12px;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.25;
  letter-spacing: -.03em;
}

#ezts .ezts-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.84) !important;
  -webkit-text-fill-color: rgba(255,255,255,.84) !important;
}

#ezts .ezts-important {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  margin: 0 0 26px;
  padding: 20px 22px;
  border: 1px solid #efc9ba;
  border-radius: 16px;
  background: var(--ezts-danger);
}

#ezts .ezts-important-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #ffe1d7;
  color: #a53c1f !important;
  -webkit-text-fill-color: #a53c1f !important;
  font-size: 22px;
  font-weight: 900;
}

#ezts .ezts-important h2 {
  margin: 0 0 4px;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-size: 18px;
}

#ezts .ezts-important p {
  margin: 0;
  color: #5f473f !important;
  -webkit-text-fill-color: #5f473f !important;
  font-size: 14px;
}

#ezts .ezts-section {
  margin-top: 38px;
}

#ezts .ezts-section-head {
  margin-bottom: 15px;
}

#ezts .ezts-section-head h2 {
  margin: 0 0 6px;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
}

#ezts .ezts-section-head p {
  margin: 0;
  color: var(--ezts-muted) !important;
  -webkit-text-fill-color: var(--ezts-muted) !important;
  font-size: 14px;
}

#ezts .ezts-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

#ezts .ezts-check {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--ezts-line);
  border-radius: 14px;
  background: #fff;
}

#ezts .ezts-check-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ezts-navy);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 13px;
  font-weight: 800;
}

#ezts .ezts-check strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-size: 14px;
}

#ezts .ezts-check p {
  margin: 0;
  color: var(--ezts-muted) !important;
  -webkit-text-fill-color: var(--ezts-muted) !important;
  font-size: 13px;
}

#ezts .ezts-symptoms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

#ezts .ezts-symptom-link {
  display: block;
  min-height: 100%;
  padding: 17px 18px;
  border: 1px solid var(--ezts-line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

#ezts .ezts-symptom-link:hover {
  transform: translateY(-2px);
  border-color: #9fc9e5;
  box-shadow: 0 8px 20px rgba(15,39,74,.08);
}

#ezts .ezts-symptom-link span {
  display: block;
  margin-bottom: 5px;
  color: var(--ezts-blue) !important;
  -webkit-text-fill-color: var(--ezts-blue) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

#ezts .ezts-symptom-link strong {
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-size: 14px;
  line-height: 1.55;
}

#ezts .ezts-case {
  scroll-margin-top: 24px;
  margin-top: 14px;
  border: 1px solid var(--ezts-line);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}

#ezts .ezts-case summary {
  list-style: none;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  gap: 12px;
  align-items: start;
  padding: 18px;
  cursor: pointer;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-weight: 800;
}

#ezts .ezts-case summary::-webkit-details-marker { display: none; }

#ezts .ezts-case-badge {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eaf5fb;
  color: #0c75b7 !important;
  -webkit-text-fill-color: #0c75b7 !important;
  font-size: 12px;
  font-weight: 900;
}

#ezts .ezts-case-plus {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

#ezts .ezts-case-plus::before,
#ezts .ezts-case-plus::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 8px;
  height: 2px;
  background: #7b8794;
}

#ezts .ezts-case-plus::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

#ezts .ezts-case[open] .ezts-case-plus::after {
  transform: rotate(0deg);
}

#ezts .ezts-case-body {
  padding: 0 20px 22px 62px;
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
  font-size: 14px;
}

#ezts .ezts-case-body p {
  margin: 0 0 11px;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

#ezts .ezts-case-body ol,
#ezts .ezts-case-body ul {
  margin: 8px 0 14px;
  padding-left: 22px;
}

#ezts .ezts-case-body li {
  margin: 4px 0;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
}

#ezts .ezts-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--ezts-blue);
  border-radius: 0 8px 8px 0;
  background: #edf6ff;
  color: #244969 !important;
  -webkit-text-fill-color: #244969 !important;
  font-size: 13px;
}

#ezts .ezts-warn {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid #df8c1c;
  border-radius: 0 8px 8px 0;
  background: var(--ezts-warn);
  color: #6b4a17 !important;
  -webkit-text-fill-color: #6b4a17 !important;
  font-size: 13px;
}

#ezts .ezts-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ezts-line);
  border-radius: 14px;
  background: #fff;
}

#ezts table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

#ezts th,
#ezts td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--ezts-line);
  text-align: left;
  vertical-align: top;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
}

#ezts thead th {
  background: var(--ezts-soft);
  font-weight: 800;
}

#ezts tbody tr:last-child th,
#ezts tbody tr:last-child td {
  border-bottom: 0;
}

#ezts .ezts-device {
  padding: 20px 22px;
  border: 1px solid #efd38a;
  border-radius: 15px;
  background: var(--ezts-warn);
}

#ezts .ezts-device h3 {
  margin: 0 0 7px;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-size: 17px;
}

#ezts .ezts-device p {
  margin: 0 0 10px;
  color: #594b32 !important;
  -webkit-text-fill-color: #594b32 !important;
  font-size: 14px;
}

#ezts .ezts-device a,
#ezts .ezts-case-body a,
#ezts .ezts-contact a {
  color: #096fae !important;
  -webkit-text-fill-color: #096fae !important;
  font-weight: 800;
}

#ezts .ezts-contact {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--ezts-line);
  border-radius: 17px;
  background: var(--ezts-soft);
}

#ezts .ezts-contact h2 {
  margin: 0 0 7px;
  color: var(--ezts-ink) !important;
  -webkit-text-fill-color: var(--ezts-ink) !important;
  font-size: 22px;
}

#ezts .ezts-contact > p {
  margin: 0 0 15px;
  color: var(--ezts-muted) !important;
  -webkit-text-fill-color: var(--ezts-muted) !important;
  font-size: 14px;
}

#ezts .ezts-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 22px;
  margin-bottom: 20px;
  padding-left: 22px;
}

#ezts .ezts-contact-grid li {
  color: #3d4a5c !important;
  -webkit-text-fill-color: #3d4a5c !important;
  font-size: 14px;
}

#ezts .ezts-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#ezts .ezts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ezts-navy);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

#ezts .ezts-btn.is-light {
  border: 1px solid #b8c6d6;
  background: #fff;
  color: var(--ezts-navy) !important;
  -webkit-text-fill-color: var(--ezts-navy) !important;
}

@media (max-width: 760px) {
  #ezts {
    padding-left: 12px;
    padding-right: 12px;
  }

  #ezts .ezts-important {
    grid-template-columns: 1fr;
  }

  #ezts .ezts-checks,
  #ezts .ezts-contact-grid {
    grid-template-columns: 1fr;
  }

  #ezts .ezts-symptoms {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  #ezts .ezts-case summary {
    grid-template-columns: 30px 1fr 18px;
    padding: 16px 14px;
    font-size: 14px;
  }

  #ezts .ezts-case-body {
    padding: 0 16px 20px 54px;
  }
}

@media (max-width: 480px) {
  #ezts .ezts-symptoms {
    grid-template-columns: 1fr;
  }

  #ezts .ezts-buttons {
    width: 100%;
  }

  #ezts .ezts-btn {
    width: 100%;
  }
}
</style>
<div id="ezts"><header class="ezts-hero">
<p class="ezts-eyebrow">Troubleshooting</p>
<h1>EZ Sign® NFC Troubleshooting Guide</h1>
<p>Choose the item that best matches your issue and check them in order from top to bottom. Most update issues are caused by the NFC antenna position, phone cases, metal surfaces, or moving the phone during the update process.</p>
</header>
<aside class="ezts-important">
<div class="ezts-important-icon">!</div>
<div>
<h2>Always try writing from the back of the EZ Sign first.</h2>
<p>Smartphone NFC antenna positions and power delivery vary by model. Please remove your phone case and any MagSafe accessories, and hold your phone flat against the center of the <b>back</b> of the EZ Sign (the side without the display).</p>
</div>
</aside>
<section class="ezts-section">
<div class="ezts-section-head">
<h2 id="ezts-common">Common Checks (First Steps)</h2>
<p>Regardless of your symptoms or error codes, please check the following items first:</p>
</div>
<div class="ezts-checks">
<div class="ezts-check">
<div class="ezts-check-num">1</div>
<div><strong>Remove cases, magnets, and cards</strong>
<p>Thick cases, MagSafe accessories, wallet-style cases, and cards can block NFC communication.</p>
</div>
</div>
<div class="ezts-check">
<div class="ezts-check-num">2</div>
<div><strong>Move away from metal surfaces</strong>
<p>Updates may become unstable on metal desks, steel shelves, or metal doors.</p>
</div>
</div>
<div class="ezts-check">
<div class="ezts-check-num">3</div>
<div><strong>Place flat against the center of the back</strong>
<p>Try updating from the center of the <b>back</b> of the EZ Sign, not the display side.</p>
</div>
</div>
<div class="ezts-check">
<div class="ezts-check-num">4</div>
<div><strong>Slightly adjust the NFC position</strong>
<p>The optimal detection spot varies by smartphone. Move your phone slowly up, down, left, or right.</p>
</div>
</div>
<div class="ezts-check">
<div class="ezts-check-num">5</div>
<div><strong>Do not move until complete</strong>
<p>Updates take about 2 to 5 seconds for 2-color models, and about 30 seconds for 4-color models. Do not pull your phone away until you see the completion message or hear the completion sound.</p>
</div>
</div>
<div class="ezts-check">
<div class="ezts-check-num">6</div>
<div><strong>Test with simple data or another device</strong>
<p>Try text-only data or a different smartphone to isolate whether the issue is caused by the data or the device.</p>
</div>
</div>
</div>
</section>
<section class="ezts-section">
<div class="ezts-section-head">
<h2 id="ezts-symptom-list">Select Your Symptom</h2>
<p>Click or jump to the matching symptom below for troubleshooting steps.</p>
</div>
<div class="ezts-symptoms"><a class="ezts-symptom-link" href="#ezts-not-start"><span>Symptom 01:</span><strong>The update does not initiate</strong></a> <a class="ezts-symptom-link" href="#ezts-error"><span>Symptom 02:</span><strong>An error code appears</strong></a> <a class="ezts-symptom-link" href="#ezts-100"><span>Symptom 03:</span><strong>Progress stops around 100%</strong></a> <a class="ezts-symptom-link" href="#ezts-complete"><span>Symptom 04:</span><strong>The app says "Complete", but the screen does not change</strong></a> <a class="ezts-symptom-link" href="#ezts-color"><span>Symptom 05:</span><strong>Colors are missing, inverted, or look incorrect</strong></a> <a class="ezts-symptom-link" href="#ezts-remain"><span><b>Symptom 06:</b></span><strong>Lines or previous images remain on the screen</strong></a> <a class="ezts-symptom-link" href="#ezts-sudden"><span>Symptom 07:</span><strong>The app used to work, but suddenly stopped working</strong></a> <a class="ezts-symptom-link" href="#ezts-some"><span>Symptom 08:</span><strong>Only certain units fail to update</strong></a> <a class="ezts-symptom-link" href="#ezts-image"><span>Symptom 09:</span><strong>Text works, but images or complex designs fail</strong></a></div>
</section>
<section class="ezts-section">
<div class="ezts-section-head">
<h2 id="ezts-procedures">By Symptom Guide</h2>
</div>
<details class="ezts-case" id="ezts-not-start" open="">
<summary><span class="ezts-case-badge">01</span><span>The update does not initiate</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p><i>Your smartphone may not be recognizing the EZ Sign.</i></p>
<ul>
<li>
<p>Remove cases, MagSafe accessories, and cards.</p>
</li>
<li>
<p>Move away from metal surfaces.</p>
</li>
<li>
<p>Hold your smartphone flat against the center of the back of the EZ Sign.</p>
</li>
<li>
<p>Slowly slide your phone up, down, left, or right to find the sweet spot.</p>
</li>
<li>
<p>If you are using an Android device with an NFC setting, make sure NFC is enabled.</p>
</li>
<li>
<p>Try testing with a different smartphone.</p>
</li>
</ul>
<div class="ezts-note">Note: Error 11 may appear if the smartphone fails to recognize the EZ Sign before transferring image data.</div>
</div>
</details>
<details class="ezts-case" id="ezts-error" open="">
<summary><span class="ezts-case-badge">02</span><span>An error code appears</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p><i>Check the "Error Code Reference" table below for guidance. For any error, start by running the common checks:</i></p>
<ul>
<li>
<p>Remove cases and move away from metal surfaces.</p>
</li>
<li>
<p>Hold your smartphone flat against the center of the back of the EZ Sign.</p>
</li>
<li>
<p>Do not move the phone until complete.</p>
</li>
<li>
<p>Try again using lightweight, text-only data.</p>
</li>
<li>
<p>If possible, test with a secondary device.</p>
</li>
</ul>
<div class="ezts-warn">Note: If Error 31 or 6600 persists across multiple devices, the hardware itself may need inspection. Please contact us with a photo of the error screen and the current display status.</div>
</div>
</details>
<details class="ezts-case" id="ezts-100" open="">
<summary><span class="ezts-case-badge">03</span><span>Progress reaches nearly 100% but never finishes</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p>The NFC connection or power supply may have been interrupted during the final display update.</p>
<ol>
<li>Keep your phone in place until the <strong>Complete</strong> message or sound appears.<span class="PDq2pG_selectionAnchor"></span></li>
<li>For 4-color models, hold your phone in place for about <strong>30 seconds</strong>.</li>
<li>Retry from the <strong>back of the EZ Sign</strong>.</li>
<li>Remove your phone case and avoid metal surfaces.</li>
</ol>
</div>
</details>
<details class="ezts-case" id="ezts-complete" open="">
<summary><span class="ezts-case-badge">04</span><span>The app says "Complete," but the display doesn't change</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p class="PDq2pG_selectionAnchorContainer">The app may have finished, but the display refresh did not.<span class="PDq2pG_selectionAnchor"></span></p>
<ol>
<li>Remove your phone case and move away from metal surfaces.</li>
<li>Hold your phone against the <strong>center of the back</strong> of the EZ Sign.</li>
<li>Keep your phone in place for a few seconds after <strong>Complete</strong> appears.</li>
<li>Try another compatible device.</li>
</ol>
<div class="ezts-warn"><strong>Still not working?</strong> Send us a photo of the display and a video of the writing process.</div>
</div>
</details>
<details class="ezts-case" id="ezts-color" open="">
<summary><span class="ezts-case-badge">05</span><span>Colors are incorrect or missing</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p class="PDq2pG_selectionAnchorContainer">This may happen if the wrong model or template is selected, or if the update was interrupted.<span class="PDq2pG_selectionAnchor"></span></p>
<ol>
<li>Verify whether your EZ Sign is a <strong>2-color</strong> or <strong>4-color</strong> model.</li>
<li>Use a <strong>4-color template</strong> for 4-color models.</li>
<li>Make sure the background is <strong>not Transparent</strong>.</li>
<li>Retry the update without moving your phone.</li>
</ol>
</div>
</details>
<details class="ezts-case" id="ezts-remain" open="">
<summary><span class="ezts-case-badge">06</span><span>Part of the display doesn't update</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p>The update may have been interrupted before completion.</p>
<ol>
<li>Remove your phone case and avoid metal surfaces.<span class="PDq2pG_selectionAnchor"></span></li>
<li>Retry from the back of the EZ Sign.</li>
<li>Test with a simple text-only image.</li>
<li>Try another compatible device.</li>
</ol>
<div class="ezts-note">If the same area remains affected, contact us with a photo of the display.</div>
</div>
</details>
<details class="ezts-case" id="ezts-sudden" open="">
<summary><span class="ezts-case-badge">07</span><span>&nbsp;EZ Sign worked before, but now it doesn't</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p>Something in your setup may have changed.</p>
<ol>
<li>Remove your phone case or accessories.<span class="PDq2pG_selectionAnchor"></span></li>
<li>Avoid metal surfaces.</li>
<li>Restart the app and your phone.</li>
<li>Try a simple text-only image.</li>
<li>Test with another compatible device.</li>
</ol>
</div>
</details>
<details class="ezts-case" id="ezts-some" open="">
<summary><span class="ezts-case-badge">08</span><span>Only some EZ Signs do not work</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p>Compare a working and non-working EZ Sign under the same conditions.</p>
<ol>
<li>Use the same phone and image.<span class="PDq2pG_selectionAnchor"></span></li>
<li>Test in the same location.</li>
<li>Note how many units work and how many don't.</li>
</ol>
<div class="ezts-warn">If only certain units consistently fail, contact us.</div>
</div>
</details>
<details class="ezts-case" id="ezts-image" open="">
<summary><span class="ezts-case-badge">09</span><span>Text update works, but images fail</span><span class="ezts-case-plus"></span></summary>
<div class="ezts-case-body">
<p>Complex images require more data and may be less reliable.</p>
<ol>
<li>Resize images to the recommended resolution.<span class="PDq2pG_selectionAnchor"></span></li>
<li>Reduce photos, gradients, thin lines, and small text.</li>
<li>Use only <strong>Black, White, Red, and Yellow</strong> for 4-color models.</li>
<li>Start with a simple design and add elements gradually.</li>
</ol>
<p class="PDq2pG_selectionAnchorContainer"><strong>Recommended image sizes</strong><span class="PDq2pG_selectionAnchor"></span></p>
<ul>
<li><strong>4.2"</strong> – 400 × 300 px</li>
<li><strong>2.9"</strong> – 296 × 128 px</li>
<li><strong>2.13"</strong> – 250 × 122 px</li>
</ul>
<p>&nbsp;</p>
</div>
</details>
</section>
<section class="ezts-section">
<div class="ezts-section-head">
<h2 id="ezts-errors">Error Code Reference</h2>
<p>(Error codes are general guides and do not definitively pinpoint a single cause.)</p>
</div>
<div class="ezts-table-wrap">
<table style="width: 141.968%; height: 478.501px;">
<thead>
<tr style="height: 51.1667px;">
<th style="width: 24.7396%; height: 51.1667px;">Error Code</th>
<th style="width: 45.0068%; height: 51.1667px;">Potential Cause</th>
<th style="width: 30.1658%; height: 51.1667px;">Action to Take</th>
</tr>
</thead>
<tbody>
<tr style="height: 75.6667px;">
<th style="width: 24.7396%; height: 75.6667px;">Error 11・12</th>
<td style="width: 45.0068%; height: 75.6667px;">EZ Sign cannot be recognized, or communication is unstable before image transfer begins.</td>
<td style="width: 30.1658%; height: 75.6667px;">Remove the case, place against the back center, and adjust the NFC alignment.</td>
</tr>
<tr style="height: 75.6667px;">
<th style="width: 24.7396%; height: 75.6667px;">Error 21</th>
<td style="width: 45.0068%; height: 75.6667px;">Communication dropped while transferring image data from the phone to the EZ Sign.</td>
<td style="width: 30.1658%; height: 75.6667px;">Do not move the phone until finished; retry from the back.</td>
</tr>
<tr style="height: 75.6667px;">
<th style="width: 24.7396%; height: 75.6667px;">Error 23・32</th>
<td style="width: 45.0068%; height: 75.6667px;">NFC communication became unstable midway through the update.</td>
<td style="width: 30.1658%; height: 75.6667px;">Avoid cases and metal surfaces; retry with lightweight data.</td>
</tr>
<tr style="height: 100.167px;">
<th style="width: 24.7396%; height: 100.167px;">Error 31・6600</th>
<td style="width: 45.0068%; height: 100.167px;">NFC communication is unstable, or hardware inspection may be required.</td>
<td style="width: 30.1658%; height: 100.167px;">Test with another device. If it doesn't improve, contact support.</td>
</tr>
<tr style="height: 100.167px;">
<th style="width: 24.7396%; height: 100.167px;">Complete but screen is blank/glitched</th>
<td style="width: 45.0068%; height: 100.167px;">The phone reported success, but power delivery wasn't stable enough to finish refreshing the screen.</td>
<td style="width: 30.1658%; height: 100.167px;"><span>Remove the case, hold flat against the back, and retry.</span></td>
</tr>
</tbody>
</table>
</div>
</section>
<section class="ezts-section">
<div class="ezts-section-head">
<h2 id="ezts-android">Google Pixel, AQUOS, and Certain Android Users</h2>
</div>
<div class="ezts-device">
<h3>Updates may be unstable on certain devices due to hardware differences.</h3>
<p>Google Pixel models prior to Pixel 7, the AQUOS series, and certain other Android devices may experience unstable updates because of their internal NFC antenna placement and power output capabilities.</p>
<p>Please remove your phone case, stay away from metal surfaces, and slowly slide your phone around the center of the back of the EZ Sign. If possible, please test with a secondary smartphone.</p>
<a href="https://www.ezsign.shop/compatible-devices/">Check compatible Devices listing</a></div>
</section>
<section class="ezts-contact">
<h2>Still Not Working? Contact Us</h2>
<p>To help us resolve your issue smoothly, please have the following information ready:</p>
<ul class="ezts-contact-grid">
<li>
<p>Place of purchase &amp; Order number</p>
</li>
<li>
<p>Product name, size, and model type (2-color / 4-color)</p>
</li>
<li>
<p>Total number of units / Number of working vs. failing units</p>
</li>
<li>
<p>Smartphone model or Windows environment</p>
</li>
<li>
<p>OS version</p>
</li>
<li>
<p>Error code (if any)</p>
</li>
<li>
<p>Current photo of the screen</p>
</li>
<li>
<p><b>A short video of the update attempt</b> (if possible)</p>
</li>
</ul>
<div class="ezts-buttons"><a class="ezts-btn is-light" href="https://www.ezsign.shop/pages/faq/">View FAQs</a> <a class="ezts-btn is-light" href="https://www.ezsign.shop/pages/app/">App Download</a> <a class="ezts-btn" href="https://santekdisplay.com/pages/ez-sign-contact">Contact&nbsp; us</a></div>
</section>
</div>