https://github.com/makerbasemoon/spiderbot
This is the Spider Bot project for maker
https://github.com/makerbasemoon/spiderbot
bootstrap cplusplus css esp32 html iot javascript ota-update platformio
Last synced: 11 months ago
JSON representation
This is the Spider Bot project for maker
- Host: GitHub
- URL: https://github.com/makerbasemoon/spiderbot
- Owner: MakerbaseMoon
- Archived: true
- Created: 2022-11-09T11:54:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-16T03:51:09.000Z (over 3 years ago)
- Last Synced: 2025-03-21T08:48:52.179Z (over 1 year ago)
- Topics: bootstrap, cplusplus, css, esp32, html, iot, javascript, ota-update, platformio
- Language: C
- Homepage:
- Size: 1.04 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spider Bot (蜘蛛機器人)
  
ESP32 蜘蛛機器人 - 第一代
This is the Spider Bot project for maker.

Group: 望月智聯網研究團隊
* Member: [jlhsu666](https://github.com/jlhsu666), [Hsun1031](https://github.com/Hsun1031), [Reaxoh](https://github.com/Reaxoh)
## git command (git 指令)
```
git clone https://github.com/MakerbaseMoon/SpiderBot.git
git submodule update --init --recursive
```
## project files (專案檔案)
```
┌───.vscode
│ c_cpp_properties.json
│ extensions.json
│ launch.json
│ settings.json
│
├───data
│ bootstrap.bundle.min.js.gz
│ bootstrap.css.gx
│
├───html
│ │
│ ├───css
│ │ style.css
│ │
│ ├───img
│ │ favicon.jpg
│ │ spider.jpg
│ │
│ ├───js
│ │ github.js
│ │ main.js
│ │ value.js
│ │ websocket.js
│ │ wifi.js
│ │
│ └ index.html
│
├───include
│ README
│
├───lib
│ ├───Adafruit-PWM-Servo-Driver-Library
│ ├───AsyncTCP
│ ├───ESP32GithubOTA
│ └───ESPAsyncWebServer
│
├───src
│ │ main.cpp
│ │
│ ├───eeprom
│ │ default.h
│ │ eeprom.cpp
│ │ eeprom.h
│ │ eeprom_ap.cpp
│ │ eeprom_data.cpp
│ │ eeprom_sta.cpp
│ │
│ ├───html
│ │ image.h
│ │ index.h
│ │ javascript.h
│ │ style.h
│ │
│ ├───internet
│ │ internet.cpp
│ │ internet.h
│ │
│ └───module
│ servos.cpp
│ servos.h
│
├───test
│ README
│
│ .gitignore
│ .gitmodules
│ platformio.ini
└─ README.md
```
## ESP32 Development Environments (ESP32 開發工具及環境)
* Install CP210x USB to UART Bridge VCP
*
* Install Visual Studio Code
*
* Connect to ESP32 website
*
## project libraries (專案 libraries)
* ESP32GithubOTA
*
* AsyncTCP-master
*
* ESPAsyncWebServer-master
*
* Adafruit-PWM-Servo-Driver-Library
*