Last active
August 6, 2026 06:50
-
-
Save up1/0634c0f66b1a04bbaad96ce19f92dc7c to your computer and use it in GitHub Desktop.
Hello TamaClaude
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ติดตั้ง Command line tool | |
| $xcode-select --install | |
| // Clone project จาก Github | |
| $git clone https://github.com/thaitop/tamaclaude.git | |
| $cd tamaclaude | |
| // ทำการติดตั้ง firmware ผ่าน serial port | |
| // และ download file จาก https://github.com/thaitop/tamaclaude/releases/tag/v1.2.0 มาไว้ที่ ~/Downloads/ | |
| // ต้องติดตั้ง Python ด้วย | |
| // การติดตั้งใช้เวลาสักพัก | |
| $PORT=$(ls /dev/cu.usbserial-* | head -1) | |
| $echo "$PORT" | |
| $python -m pip install esptool | |
| $python -m esptool --chip esp32 --port "$PORT" write_flash 0x0 ~/Downloads/tamaclaude-esp32-1.2.0.bin | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $cd host | |
| $./Scripts/make-app.sh --install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment