你好,我是

Wilson Tu

嵌入式系統、工具開發與 AI 應用。

我把做過的系統、解過的問題,以及值得留下來的筆記整理在這裡。

// Wilson Tu
type Focus = "embedded systems" | "engineering tools" | "applied AI";

interface EngineerProfile {
  name: string;
  focus: Focus[];
  collects: string[];
}

const wilson: EngineerProfile = {
  name: "Wilson Tu",
  focus: ["embedded systems", "engineering tools", "applied AI"],
  collects: ["systems", "problems", "notes"],
};

export function keepNotes() {
  return wilson.collects.map((item) => archive(item));
}

專長

FW

韌體與嵌入式系統

韌體、嵌入式平台,以及電源相關系統整合。

SW

工具開發與自動化

GUI、CLI、自動化流程,以及讓工作更順手的工具。

AI

AI 應用

把 AI 用在工具、分析與工作流程中的實際應用。