mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-15 09:10:39 -08:00
Updated README.md
This commit is contained in:
4
.github/workflows/nightly.yml
vendored
4
.github/workflows/nightly.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Notfiy nightly-deauther to trigger build
|
||||
name: Trigger nightly build
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -10,7 +10,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Build message title
|
||||
run: echo ::set-env name=TITLE::${{ github.event_name }} $(echo ${{ github.sha }} | cut -c -7)
|
||||
run: echo ::set-env name=TITLE::Deauther V3 $(echo ${{ github.sha }} | cut -c -7)
|
||||
|
||||
- name: Send message
|
||||
run: |
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -3,3 +3,5 @@ build/*
|
||||
*.elf
|
||||
*.bin
|
||||
*.map
|
||||
|
||||
.DS_Store
|
||||
|
||||
27
README.md
27
README.md
@@ -1,7 +1,5 @@
|
||||
# ESP8266 Deauther 3.0
|
||||
|
||||

|
||||
|
||||
**This version is still in development!**
|
||||
|
||||
[Link to Version 2](https://github.com/SpacehuhnTech/esp8266_deauther/tree/v2/esp8266_deauther)
|
||||
@@ -40,16 +38,14 @@
|
||||
|
||||
1. Install Arduino IDE
|
||||
2. In Arduino go to `File` -> `Preferences` add both URLs to `Additional Boards Manager URLs`
|
||||
`http://arduino.esp8266.com/stable/package_esp8266com_index.json`
|
||||
`https://raw.githubusercontent.com/wiki/tobozo/Arduino/package_deauther_index.json`
|
||||
3. In Arduino go to `Tools` -> `Board` -> `Boards Manager`, search `esp8266` and install `esp8266` and `arduino-esp8266-deauther`
|
||||
4. In Arduino go to `Sketch` -> `Libraries` -> `Include Library` -> `Manage Libraries...`, search and install [`SimpleCLI`](https://github.com/spacehuhn/SimpleCLI#installation)
|
||||
5. Download [V3 source code](https://github.com/SpacehuhnTech/esp8266_deauther/archive/v3.zip) and unzip it
|
||||
`https://raw.githubusercontent.com/SpacehuhnTech/arduino/main/package_spacehuhn_index.json`
|
||||
3. In Arduino go to `Tools` -> `Board` -> `Boards Manager` search for and install the `deauther` package
|
||||
4. Download [V3 source code](https://github.com/SpacehuhnTech/esp8266_deauther/archive/v3.zip) and unzip it
|
||||
or `git clone https://github.com/SpacehuhnTech/esp8266_deauther`, `cd esp8266` and `git checkout v3`
|
||||
6. Open `esp8266_deauther/esp8266_deauther.ino` with Arduino
|
||||
7. Select an `ESP8266 Deauther` board in Arduino under `tools` -> `board`
|
||||
8. Connect your device and select the serial port in Arduino under `tools` -> `port`
|
||||
9. Click Upload button
|
||||
5. Open `esp8266_deauther/esp8266_deauther.ino` with Arduino
|
||||
6. Select an `ESP8266 Deauther` board in Arduino under `tools` -> `board`
|
||||
7. Connect your device and select the serial port in Arduino under `tools` -> `port`
|
||||
8. Click Upload button
|
||||
|
||||
## Install using Arduino-CLI
|
||||
|
||||
@@ -60,19 +56,14 @@
|
||||
`cd esp8266` and
|
||||
`git checkout v3`
|
||||
3. Update board URLs `arduino-cli core update-index`
|
||||
4. Install [EPS8266 Arduino Core](https://github.com/esp8266/Arduino)
|
||||
`arduino-cli core install esp8266:esp8266`
|
||||
5. Install [ESP8266 Deauther Core](https://github.com/tobozo/Arduino/)
|
||||
`arduino-cli core install deauther:esp8266`
|
||||
6. Install [SimpleCLI library](https://github.com/spacehuhn/simplecli)
|
||||
`arduino-cli lib update-index` and
|
||||
`arduino-cli lib install SimpleCLI`
|
||||
7. Connect and find port of ESP8266 dev board
|
||||
`arduino-cli board list`
|
||||
8. Compile
|
||||
`arduino-cli compile esp8266_deauther --fqbn deauther:esp8266:dstike`
|
||||
`arduino-cli compile esp8266_deauther --fqbn deauther:esp8266:d1_mini`
|
||||
9. Upload
|
||||
`arduino-cli upload -p <PORT> --fqbn deauther:esp8266:dstike`
|
||||
`arduino-cli upload -p <PORT> --fqbn deauther:esp8266:d1_mini`
|
||||
|
||||
## Debug Exceptions using Arduino IDE
|
||||
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
# arduino-cli.yaml
|
||||
board_manager:
|
||||
additional_urls:
|
||||
- http://arduino.esp8266.com/stable/package_esp8266com_index.json
|
||||
- https://raw.githubusercontent.com/wiki/tobozo/Arduino/package_deauther_index.json
|
||||
- https://raw.githubusercontent.com/SpacehuhnTech/arduino/main/package_spacehuhn_index.json
|
||||
|
||||
Reference in New Issue
Block a user