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

# 推荐群聊

> NEC 推荐的机器人竞赛与硬件技术 QQ 交流群，扫码即可加入

export const LazyImages = () => {
  useEffect(() => {
    if (typeof document === "undefined") return;
    const applyLazy = root => {
      const scope = root || document;
      const images = scope.querySelectorAll ? scope.querySelectorAll("img") : [];
      images.forEach(img => {
        if (img.closest("#navbar, header, nav, [data-no-lazy]")) return;
        if (img.hasAttribute("loading")) return;
        if (!img.closest("main, article, #content-wrapper")) return;
        img.setAttribute("loading", "lazy");
        img.setAttribute("decoding", "async");
        if (!img.hasAttribute("alt")) img.setAttribute("alt", "");
      });
    };
    applyLazy(document);
    const observer = new MutationObserver(mutations => {
      for (const m of mutations) {
        for (const node of m.addedNodes) {
          if (!(node instanceof Element)) continue;
          if (node.tagName === "IMG") {
            applyLazy(node.parentElement || document);
          } else if (node.querySelector) {
            applyLazy(node);
          }
        }
      }
    });
    observer.observe(document.body, {
      childList: true,
      subtree: true
    });
    return () => observer.disconnect();
  }, []);
  return null;
};

<LazyImages />

除 NEC 自有社群外，这里汇总了社区成员常用的竞赛、硬件与技术交流 QQ 群，扫码或搜索群号即可加入。

<Note>
  部分群名称在 QQ 中显示过长被截断（以 … 表示），请以**群号**为准搜索加入。
</Note>

## 社区官方群

<CardGroup cols={2}>
  <Card title="NEC 新能源开发者社区" icon="message-circle">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-nec-community-479053780.jpg" alt="NEC 新能源开发者社区 QQ 群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**479053780**</p>

    <p className="text-xs text-muted-foreground text-center">
      社区主群，入群流程见 [加入 NEC & 资料收集](/community/join-collection)
    </p>
  </Card>
</CardGroup>

## 竞赛交流群

<CardGroup cols={2}>
  <Card title="CURC-ROBOCON-…" icon="trophy">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-curc-robocon-963352526.jpg" alt="CURC-ROBOCON 交流群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**963352526**</p>
    <p className="text-xs text-muted-foreground text-center">ROBOCON 赛事交流</p>
  </Card>

  <Card title="CURC-RCer" icon="trophy">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-curc-rcer-975538078.jpg" alt="CURC-RCer 交流群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**975538078**</p>
    <p className="text-xs text-muted-foreground text-center">CURC 参赛队员交流</p>
  </Card>

  <Card title="工创科创营" icon="lightbulb">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-gongchuang-kechuangying-384112558.jpg" alt="工创科创营交流群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**384112558**</p>
    <p className="text-xs text-muted-foreground text-center">工程创新 / 科创竞赛交流</p>
  </Card>
</CardGroup>

## 硬件与技术交流群

<CardGroup cols={2}>
  <Card title="N650 电调交流群" icon="microchip">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-n650-esc-1049190269.jpg" alt="N650 电调交流群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**1049190269**</p>
    <p className="text-xs text-muted-foreground text-center">电调（ESC）开发与调试</p>
  </Card>

  <Card title="达妙科技-技术交流2群" icon="gear">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-damiao-tech-2-677900232.jpg" alt="达妙科技技术交流 2 群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**677900232**</p>
    <p className="text-xs text-muted-foreground text-center">达妙电机 / 驱动器官方技术交流</p>
  </Card>

  <Card title="全向轮滚子 OpenTp…" icon="circle-nodes">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-omniwheel-opentp-704988252.jpg" alt="全向轮滚子 OpenTp 交流群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**704988252**</p>
    <p className="text-xs text-muted-foreground text-center">全向轮 / 滚子结构技术交流</p>
  </Card>

  <Card title="RoboLegged_足式…" icon="robot">
    <img src="https://cdn.newenergycoder.club/images/qrcode/qq-robolegged-639896704.jpg" alt="RoboLegged 足式机器人交流群二维码" width="200" className="mx-auto rounded-lg border border-border" />

    <p className="text-sm text-center mt-3">群号：**639896704**</p>
    <p className="text-xs text-muted-foreground text-center">足式机器人技术交流</p>
  </Card>
</CardGroup>

<Tip>
  如果二维码过期或群号搜索不到，请在 NEC QQ 群（479053780）中 @运营 反馈，或提交 [Gitee Issue](https://gitee.com/darrenpig/new_energy_coder_club/issues)。
</Tip>
