diff --git a/.github/workflows/wiki.yml b/.github/workflows/wiki.yml deleted file mode 100644 index 94480066..00000000 --- a/.github/workflows/wiki.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deploy Wiki - -on: - push: - paths: - # Trigger only when wiki directory changes - - 'wiki/**' - branches: - # And only on main branch - - 2.1.x - -jobs: - deploy-wiki: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Push Wiki Changes - uses: Andrew-Chen-Wang/github-wiki-action@v3 - env: - # Make sure you have that / at the end. We use rsync - # WIKI_DIR's default is wiki/ - WIKI_DIR: wiki/ - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GH_MAIL: ${{ secrets.MY_EMAIL }} - GH_NAME: ${{ github.repository_owner }} - EXCLUDED_FILES: "a/ b.md" diff --git a/wiki/Command-line-2_0.md b/wiki/Command-line-2_0.md deleted file mode 100644 index fa1a631d..00000000 --- a/wiki/Command-line-2_0.md +++ /dev/null @@ -1,155 +0,0 @@ -# Command line commands for 2.0 - -## Format - -Please note all commands are in format `[ESPxx]`. These first brackets `[]` are not optional. -Most of the time givin no argument will return current configuration -If authentication is on, somme commands will need admin password. They are recognised by the optional argument `[pwd=]` in command line. - -## Deviations from standard command line - -Based on command line format from . - -* `[ESPxxx]` the brackets are part of the command here and do not mean "optional argument" -* ALL commands with `=` should be using long arg format `--arg=` for example `[pwd=]` should be `[--pwd=]` - -## Commands - -### Get/change STA SSID -`[ESP100] [] [pwd=]` - -### Change STA Password -`[ESP101] [pwd=]` - -### Get/change Hostname -`[ESP102] [] [pwd=]` - -### Get/change Wifi mode (STA/AP) -`[ESP103] [STA | AP] [pwd=]` - -### Get/change STA IP mode (DHCP/STATIC) -`[ESP104] [DHCP | STATIC] [pwd=]` - -### Get/change AP SSID -`[ESP105] [] [pwd=]` - -### Change AP Password -`[ESP106] [pwd=]` - -### Get/change AP IP mode (DHCP/STATIC) -`[ESP107] [DHCP | STATIC] [pwd=]` - -### Get/change wifi state (on/off) -`[ESP110] [ON | OFF | RESTART] [pwd=]` - -### Get current IP -`[ESP111]` - -### Get/Change hostname -`[ESP112] []` - -### Get/Set pin value -`[ESP201] P [V PULLUP=YES RAW=YES ANALOG=NO ANALOG_RANGE=255 CLEARCHANNELS=NO pwd=]` -if no V get P value -if V 0/1 set INPUT_PULLUP value, but for GPIO16 INPUT_PULLDOWN_16 -GPIO1 and GPIO3 cannot be used as they are used for serial -if PULLUP=YES set input pull up, if not set input -if RAW=YES do not set pinmode just read value - -### Output to oled column C and line L -`[ESP210] C= L= T=` - -### Output to oled line 1 -`[ESP211] ` - -### Output to oled line 2 -`[ESP212] ` - -### Output to oled line 3 -`[ESP213] ` - -### Output to oled line 4 -`[ESP214] ` - -### Get full EEPROM settings content -but do not give any passwords -can filter if only need wifi or printer -`[ESP400] ` - -### Set EEPROM setting -`[ESP401] P= T={B | I | S | A} V= [pwd=]` -`T` type: B(byte), I(integer/long), S(string), A(IP address / mask) -`P` position: address in EEPROM - -* `EP_WIFI_MODE 0 //1 byte = flag` -* `EP_STA_SSID 1 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese` -* `EP_STA_PASSWORD 34 //65 bytes 64 +1 = string ;warning does not support multibyte char like chinese` -* `EP_STA_IP_MODE 99 //1 byte = flag` -* `EP_STA_IP_VALUE 100 //4 bytes xxx.xxx.xxx.xxx` -* `EP_STA_MASK_VALUE 104 //4 bytes xxx.xxx.xxx.xxx` -* `EP_STA_GATEWAY_VALUE 108 //4 bytes xxx.xxx.xxx.xxx` -* `EP_BAUD_RATE 112 //4 bytes = int` -* `EP_STA_PHY_MODE 116 //1 byte = flag` -* `EP_SLEEP_MODE 117 //1 byte = flag` -* `EP_CHANNEL 118 //1 byte = flag` -* `EP_AUTH_TYPE 119 //1 byte = flag` -* `EP_SSID_VISIBLE 120 //1 byte = flag` -* `EP_WEB_PORT 121 //4 bytes = int` -* `EP_DATA_PORT 125 //4 bytes = int` -* `EP_OUTPUT_FLAG 129 //1 bytes = flag` -* `EP_HOSTNAME 130 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese` -* `EP_DHT_INTERVAL 164 //4 bytes = int` -* `EP_FREE_INT2 168 //4 bytes = int` -* `EP_FREE_INT3 172 //4 bytes = int` -* `EP_ADMIN_PWD 176 //21 bytes 20+1 = string ; warning does not support multibyte char like chinese` -* `EP_USER_PWD 197 //21 bytes 20+1 = string ; warning does not support multibyte char like chinese` -* `EP_AP_SSID 218 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese` -* `EP_AP_PASSWORD 251 //65 bytes 64 +1 = string ;warning does not support multibyte char like chinese` -* `EP_AP_IP_VALUE 316 //4 bytes xxx.xxx.xxx.xxx` -* `EP_AP_MASK_VALUE 320 //4 bytes xxx.xxx.xxx.xxx` -* `EP_AP_GATEWAY_VALUE 324 //4 bytes xxx.xxx.xxx.xxx` -* `EP_AP_IP_MODE 329 //1 byte = flag` -* `EP_AP_PHY_MODE 330 //1 byte = flag` -* `EP_FREE_STRING1 331 //129 bytes 128+1 = string ; warning does not support multibyte char like chinese` -* `EP_DHT_TYPE 460 //1 bytes = flag` -* `EP_TARGET_FW 461 //1 bytes = flag` - -### Get available AP list (limited to 30) -`[ESP410] [plain]` -Output is JSON or plain text according parameter - -### Get current settings of ESP3D -`[ESP420] [plain]` -Output is JSON or plain text according parameter - -### Get/Set ESP mode -`[ESP444] [RESET | SAFEMODE | CONFIG | RESTART] [pwd=]` -if authentication is on, need admin password for RESET, RESTART and SAFEMODE - -### Change / Reset user password -`[ESP555] [] [pwd=]` -If no password set it use default one - -### Send GCode with check sum caching right line numbering -`[ESP600] ` - -### Send line checksum -`[ESP601] ` - -### Read SPIFFS file and send each line to serial -`[ESP700] ` - -### Format SPIFFS -`[ESP710] FORMAT [pwd=]` - -### Get SPIFFS total size and used size -`[ESP720]` - -### Get fw version and basic information -`[ESP800]` - -### Get fw target -`[ESP801]` - -### Check SD presence -`[ESP802]` diff --git a/wiki/Command-line-2_1.md b/wiki/Command-line-2_1.md deleted file mode 100644 index 23b5925e..00000000 --- a/wiki/Command-line-2_1.md +++ /dev/null @@ -1,161 +0,0 @@ -# Command line commands for 2.1 - -## Format - -Please note all commands are in format `[ESPxx]`. These first brackets `[]` are not optional. -Most of the time givin no argument will return current configuration -If authentication is on, somme commands will need admin password. They are recognised by the optional argument `[pwd=]` in command line. - -## Commands - -### Get/change STA SSID -`[ESP100] [] [pwd=]` - -### Change STA Password -`[ESP101] [pwd=]` - -### Get/change Hostname -`[ESP102] [] [pwd=]` - -### Get/change Wifi mode (STA/AP) -`[ESP103] [STA | AP] [pwd=]` - -### Get/change STA IP mode (DHCP/STATIC) -`[ESP104] [DHCP | STATIC] [pwd=]` - -### Get/change AP SSID -`[ESP105] [] [pwd=]` - -### Change AP Password -`[ESP106] [pwd=]` - -### Get/change AP IP mode (DHCP/STATIC) -`[ESP107] [DHCP | STATIC] [pwd=]` - -### Get/change wifi state (on/off) -`[ESP110] [ON | OFF | RESTART] [pwd=]` - -### Get current IP -`[ESP111]` - -### Get/Change hostname -`[ESP112] []` - -### Get/Set pin value -`[ESP201] P [V PULLUP=YES RAW=YES ANALOG=NO ANALOG_RANGE=255 CLEARCHANNELS=NO pwd=]` -if no V get P value -if V 0/1 set INPUT_PULLUP value, but for GPIO16 INPUT_PULLDOWN_16 -GPIO1 and GPIO3 cannot be used as they are used for serial -if PULLUP=YES set input pull up, if not set input -if RAW=YES do not set pinmode just read value - -### Output to oled column C and line L -`[ESP210] C= L= T=` - -### Output to oled line 1 -`[ESP211] ` - -### Output to oled line 2 -`[ESP212] ` - -### Output to oled line 3 -`[ESP213] ` - -### Output to oled line 4 -`[ESP214] ` - -### Delay -`[ESP290] [pwd=]` - -### Get EEPROM mapping version -`[ESP300]` - -### Get full EEPROM settings content -but do not give any passwords -can filter if only need wifi or printer -`[ESP400] ` - -### Set EEPROM setting -`[ESP401] P= T={B | I | S | A} V= [pwd=]` -`T` type: B(byte), I(integer/long), S(string), A(IP address / mask) -`P` position: address in EEPROM - -* `EP_WIFI_MODE 0 //1 byte = flag` -* `EP_STA_SSID 1 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese` -* `EP_STA_PASSWORD 34 //65 bytes 64 +1 = string ;warning does not support multibyte char like chinese` -* `EP_STA_IP_MODE 99 //1 byte = flag` -* `EP_STA_IP_VALUE 100 //4 bytes xxx.xxx.xxx.xxx` -* `EP_STA_MASK_VALUE 104 //4 bytes xxx.xxx.xxx.xxx` -* `EP_STA_GATEWAY_VALUE 108 //4 bytes xxx.xxx.xxx.xxx` -* `EP_BAUD_RATE 112 //4 bytes = int` -* `EP_STA_PHY_MODE 116 //1 byte = flag` -* `EP_SLEEP_MODE 117 //1 byte = flag` -* `EP_CHANNEL 118 //1 byte = flag` -* `EP_AUTH_TYPE 119 //1 byte = flag` -* `EP_SSID_VISIBLE 120 //1 byte = flag` -* `EP_WEB_PORT 121 //4 bytes = int` -* `EP_DATA_PORT 125 //4 bytes = int` -* `EP_OUTPUT_FLAG 129 //1 bytes = flag` -* `EP_HOSTNAME 130 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese` -* `EP_DHT_INTERVAL 164 //4 bytes = int` -* `EP_FREE_INT2 168 //4 bytes = int` -* `EP_FREE_INT3 172 //4 bytes = int` -* `EP_ADMIN_PWD 176 //21 bytes 20+1 = string ; warning does not support multibyte char like chinese` -* `EP_USER_PWD 197 //21 bytes 20+1 = string ; warning does not support multibyte char like chinese` -* `EP_AP_SSID 218 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese` -* `EP_AP_PASSWORD 251 //65 bytes 64 +1 = string ;warning does not support multibyte char like chinese` -* `EP_AP_IP_VALUE 316 //4 bytes xxx.xxx.xxx.xxx` -* `EP_AP_MASK_VALUE 320 //4 bytes xxx.xxx.xxx.xxx` -* `EP_AP_GATEWAY_VALUE 324 //4 bytes xxx.xxx.xxx.xxx` -* `EP_AP_IP_MODE 329 //1 byte = flag` -* `EP_AP_PHY_MODE 330 //1 byte = flag` -* `EP_FREE_STRING1 331 //129 bytes 128+1 = string ; warning does not support multibyte char like chinese` -* `EP_DHT_TYPE 460 //1 bytes = flag` -* `EP_TARGET_FW 461 //1 bytes = flag` - -### Get available AP list (limited to 30) -`[ESP410] [plain]` -Output is JSON or plain text according parameter - -### Get current settings of ESP3D -`[ESP420] [plain]` -Output is JSON or plain text according parameter - -### Get/Set ESP mode -`[ESP444] [RESET | SAFEMODE | CONFIG | RESTART] [pwd=]` -if authentication is on, need admin password for RESET, RESTART and SAFEMODE - -### Send GCode with check sum caching right line numbering -`[ESP500] ` - -### Send line checksum -`[ESP501] ` - -### Change / Reset user password -`[ESP555] [] [pwd=]` -If no password set it use default one - -### Send notification -`[ESP600] [pwd=]` - -### Set/Get notification settings -`[ESP610] type={NONE | PUSHOVER | EMAIL | LINE} T1= T2= TS= [pwd=]` -Get will give type and settings only not the protected T1/T2 - -### Read SPIFFS file and send each line to serial -`[ESP700] ` - -### Format SPIFFS -`[ESP710] FORMAT [pwd=]` - -### Get SPIFFS total size and used size -`[ESP720]` - -### Get fw version and basic information -`[ESP800]` - -### Get fw target -`[ESP801]` - -### Get state / Set Enable / Disable Serial Communication -`[ESP900] <{ENABLE | DISABLE}>` diff --git a/wiki/Command-line-commands.md b/wiki/Command-line-commands.md deleted file mode 100644 index bb4025f8..00000000 --- a/wiki/Command-line-commands.md +++ /dev/null @@ -1,5 +0,0 @@ -# Command line commands - -* [v2.0.x](https://github.com/luc-github/ESP3D/wiki/Command-line-2_0) -* [v2.1.x](https://github.com/luc-github/ESP3D/wiki/Command-line-2_1) -* [v3.0.x : work in progress](https://github.com/luc-github/ESP3D/blob/3.0/docs/Commands.md) diff --git a/wiki/Cybersecurity-concerns.md b/wiki/Cybersecurity-concerns.md deleted file mode 100644 index b177204b..00000000 --- a/wiki/Cybersecurity-concerns.md +++ /dev/null @@ -1,26 +0,0 @@ -# Cybersecurity concerns - -## Concerns - -If you plan to have access to you ESP from outside of your private network than you need to apply some basic security rules to avoid anybody to be able to access your ESP. - -__Disclaimer__ : this wiki is for reference - you are responsible of your board and internet network, we are not responsible for any damage to any of your network appliances. - -## Recommendations - -Following steps must be done **before** your ESP is visible from public internet: - -- Activate authentication in config.h file -- Change default user and password (this can be done from config.h or later with commands) - -Is also strongly recommended to: - -- Use strong passwords -- Use unique passwords, not same as for other accounts -- Change password regularly -- Configure box to redirect a different port than 80 to the port 80 of ESP -- Use [DMZ](https://en.wikipedia.org/wiki/DMZ_(computing)) feature of your box - -## Additional tips - -- Remember the web server is not https, this means the server will never be fully secure. In particular, avoid to connect to your printer from any public network you do not own. Stick to your 4G network or other safe places to avoid [MITM attack](https://en.wikipedia.org/wiki/Man-in-the-middle_attack) diff --git a/wiki/Email_and_SMTP.md b/wiki/Email_and_SMTP.md deleted file mode 100644 index 90ef20d7..00000000 --- a/wiki/Email_and_SMTP.md +++ /dev/null @@ -1,21 +0,0 @@ -# Email Notification using SMTP and HTTPS - -`[ESP610]type=EMAIL T1= T2= TS=` - -SMTP need several parameters: -**token1** = ID to login to your email supplier -**token2** = Password to login to your email supplier -**settings** = `the_recipient#smtp_server:port` where **#** and **:** are fields separators. -For example `luc@gmail.com#smtp.gmail.com:465` - -1 - Type the parameters: -`[ESP610]type=EMAIL T1=luc@gmail.com T2=mypassword TS=luc@gmail.com#smtp.gmail.com:465` - -2 - Type `[ESP610]` to verify (T1 and T2 won't be displayed) - -3 - Try to send message: -`[ESP600]Hi there, test from ESP3D` - -4 - **Important** : if you are using Gmail there is an additional step, as by default https access is disabled. -go to : https://myaccount.google.com/lesssecureapps and allow less secure applications to connect -![gmail enabling http access](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Email/google.PNG) diff --git a/wiki/Flash-Size.md b/wiki/Flash-Size.md deleted file mode 100644 index df541890..00000000 --- a/wiki/Flash-Size.md +++ /dev/null @@ -1,63 +0,0 @@ -# Arduino IDE board configuration - -The ESP8266 comes in various models: - -configure your Arduino IDE -> Tools -> Boards as: - -## Known working configs - -### The latest ESP01 and ESP12Es come with 4Mb of flash: For those - -* Board: Generic ESP8266 Module -* Upload Speed: 115200 -* CPU frequency: 160 MHz -* Flash Size: 4M (3M SPIFFS) -* Flash Mode: DIO -* Flash Frequency: 40Mhz -* Reset Method: CK -* Debug Port: Disabled -* Debug Level: None - -### Some of the older devices come with 1M flash - -* Board: Generic ESP8266 Module -* Upload Speed: 115200 -* CPU frequency: 160 MHz -* Flash Size: 1M (128K SPIFFS) -* Flash Mode: DIO -* Flash Frequency: 40Mhz -* Reset Method: CK -* Debug Port: Disabled -* Debug Level: None - -### Though now no longer supported, it is possible to run the firmware on devices like the ESP07 with 512K of flash: - -* Board: Generic ESP8266 Module -* Upload Speed: 115200 -* CPU frequency: 160 MHz -* Flash Size: 512k (128K SPIFFS) -* Flash Mode: DIO -* Flash Frequency: 40Mhz -* Reset Method: CK -* Debug Port: Disabled -* Debug Level: None - -## Figuring out the Flash Size - -If you are unsure how much flash memory your particular module has. you can figure it out from the Arduino IDE: - -1. Open the Arduino IDE -2. Click File, Examples, ESP8266, CheckFlashConfig -3. Upload the sketch to the ESP8266 -4. View the Serial Monitor (115200 baud) -5. This compares what you have in Tools -> Board -> Flash Size to what is actually on the board... - -For example: -`Flash real id: 001340C8` -`Flash real size: 524288` -`Flash ide size: 524288` -`Flash ide speed: 40000000` -`Flash ide mode: DIO` -`Flash Chip configuration ok.` - -(NB: If you dont get a 'Flash Chip configuration ok.' uploading will appear to work succesfully but the chip will crash on startup and never show an access point / serial output) diff --git a/wiki/Home.md b/wiki/Home.md deleted file mode 100644 index 80503b6b..00000000 --- a/wiki/Home.md +++ /dev/null @@ -1,19 +0,0 @@ -# Welcome to ESP3D wiki - -## Releases are vailable here - - - ---- - -## Other nice things done using ESP3D - -* [Rainmeter skin by @StArL0rd84](https://github.com/luc-github/ESP3D/wiki/Rainmeter-skin) - ---- - -## Contributing - -To update wiki please submit a PR to wiki directory content of default branch - -Path for the wiki images will be `https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/...` diff --git a/wiki/IFTTT.md b/wiki/IFTTT.md deleted file mode 100644 index 686154fa..00000000 --- a/wiki/IFTTT.md +++ /dev/null @@ -1,81 +0,0 @@ -# IFTTT Notification (https://ifttt.com) - -`[ESP610]type=IFTTT T1={event} T2={webhooks_key}` - -IFFT is a wrapper that allows several kind of notifications, please refer to - -1 - If you do not have IFTTT account you can create for free to use up to 5 applets. -![IFFTT account creation step](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/accountCreation1.png) - -2 - Create New applet -![Create applet](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook1.png) - -* Create new trigger - ![create trigger](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook2.png) - -* The trigger is a webhook - ![trigger is a webhook](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook3.png) - -* Choose Web request - ![choose web request](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook4.png) - -* Set the event name - ![set event name](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook5.png) - -* Define the action you want - ![define wanted action](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook6.png) - -* Select the service you want to use - As you can see there are a lot, let use email as example, but you can select any one that fit your needs - ![select device](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook7.png) - ![select device](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook8.png) - -* Define the message - IFTTT allows some variables: - * title from ESP3D --> value1 - * message from ESP3D --> value2 - * ESP3D hostname --> value3 - - ![define message](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook9.png) - -* Applet is created - ![applet created](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook11.png) - -3 - Retrieve the webhook key - -* Go to settings - ![settings](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/createWebHook12.png) - -* Select service - ![service](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/manageservice.png) - -* Select webhook - ![webhook](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/manageservice1.png) - -* Choose documentation - ![documentation](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/manageservice2.png) - -* Copy the key - ![copy key](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/manageservice3.png) - -4 - Save the generate token and chatID in ESP3D, and set Telegram as notification supplier -`[ESP610]type=IFTTT T1={event} T2={webhooks_key}` - -5 - type `[ESP610]` to verify (T1/T2 won't be displayed) - -6 - Try to send message: -`[ESP600]Hi there, test from ESP3D` - -7 - Verify the workflow - -* Go to Applets - ![applets](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/applets.png) -* Select Activity - ![activity](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/activity1.png) -* Select the flow to display - ![flow to display](https://raw.githubusercontent.com/luc-github/ESP3D/2.1.x/wiki/images/IFTTT/activity2.png) - -Note: This documentation is not exaustive due to huge features of IFTTT notifications service but base is always same : - - IFThis => webhooks based on webrequest - THENThat => IFTTT notification service diff --git a/wiki/Install-Instructions.md b/wiki/Install-Instructions.md deleted file mode 100644 index abd76433..00000000 --- a/wiki/Install-Instructions.md +++ /dev/null @@ -1,104 +0,0 @@ -# Buildind code - -## Table of contents - -- [Building with PlatformIO and VScode (recommended method)](#Building-with-PlatformIO-and-VScode-(recommended-method)) -- [Building with Arduino IDE](#Building-with-Arduino-IDE) - - [Video guide by Chris Riley](#Video-guide-by-Chris-Riley) - - [Written guide](#Written-guide) -- [Common steps for all methods](#Common-steps-for-all-methods) -- [Additional tips](#Additional-tips) -- [Full ESP erase](#Full-ESP-erase) - -## Building with PlatformIO and VScode (recommended method) - -1. Download and install [Visual Studio Code](https://code.visualstudio.com/) -2. Download [latest release](https://github.com/luc-github/ESP3D/releases/latest) of this project - - Extract it anywhere -3. Open the forlder containing the project from within VScode (file->open folder) -4. Let VScode install exptension packages recommended by the project. - - A popup should appear in lower right corner - - It will install extensions listed in .vscode/extensions.json - - Wait for complete installation -5. Build with PlatformIO - - Click to open the platformIO tab on the left (or ctrl+maj+P and type `View: Show PlatformIO`) - - Unwrap target corresponding to your board - - Click on `Upload` to build and upload FW to ESP board - -Follow additional steps [here](#Common-steps-for-all-methods) - -## Building with Arduino IDE - -### Video guide by Chris Riley - -[![Chris Riley ESP3D build video](https://img.youtube.com/vi/pJGBRriNc9I/0.jpg)](https://www.youtube.com/watch?v=pJGBRriNc9I) - -### Written guide - -1. Arduino IDE - - Download Arduino IDE version 1.x.y from - - Install the Arduino IDE -2. Additional libraries - - Open the Arduino IDE go to File -> Preferences - - In the "Additional Boards Manager URL" field, add following URLs: - - details about installation [here](https://github.com/esp8266/Arduino#installing-with-boards-manager) - - details about installation [here](https://docs.espressif.com/projects/arduino-esp32/en/latest/installing.html) - - Click OK - - Click Tools -> Boards -> Board Manager - - Scroll to near the bottom, and find "esp8266 by ESP8266 Community" and click on the row - - On the "Select Version" dropdown, select version according to [ESP3D home page](https://github.com/luc-github/ESP3D) - - Wait for the ESP8266 support to be installed -3. Download [latest release](https://github.com/luc-github/ESP3D/releases/latest) of this project - - Extract it to your sketchbook or other location - - Copy the libraries present in the ESP3D-x.y.z/libraries directory into your Arduino/libraries directory. These versions are verified to work with ESP3D, any others (newer version) may cause untested behavior. More information about libraries installation options [here](https://docs.arduino.cc/software/ide-v1/tutorials/installing-libraries) - - Open the Arduino IDE and open the project file esp3d/esp3d.ino (ESP8266/esp8266.ino for older versions) -4. Configure for your board - - [Get flash sise of your board](https://github.com/luc-github/ESP3D/wiki/Flash-Size#figuring-out-the-flash-size) - - Apply [correct setting](https://github.com/luc-github/ESP3D/wiki/Flash-Size) in Arduinio -> tools ->board - - Double check you have the clock speed set to 160Mhz - - Double check you have the correct Flash size selected -5. Upload the sketch - - Configure your ESP8266 or ESP32 for upload (USB to serial plugged in, GPIO0 and GPIO15 pulled low, RST pulled high) - - Click the Upload button in Arduino IDE (Or press Ctrl+U) - -Follow additional steps [here](#Common-steps-for-all-methods) - -## Common steps for all methods - -6. Starting the board - - Reboot the ESP8266 or ESP32 into run mode (USB to serial removed , GPIO0 pulled high, GPIO15 pulled low, RST pulled high) - - Find the wifi AP (Access Point) called **ESP3D** (or ESP8266 in older versions) - - Connect to the wifi AP using the default password of **12345678** -7. Initial configuration - - Open device web page on the AP connected device with one of 2 following options: - - Accept Captive portal redirect - - Open a web browser and navigate to - - Upload index.html.gz file to the SPIFFS filesystem using web page uploader -8. Configure device - - If authentication is enabled use pair user/password **admin**/**admin** - - I recommend changing to Station mode and connecting to your home/office Wifi instead of staying in AP mode - - You may want to change the Baud rate - - You can change to DHCP, or at the very least setup a Static IP you are familiar with -9. Connect ESP board to your printer motherboard - - More details can be found [here](https://github.com/luc-github/ESP3D/wiki/Hardware-connection) - -## Additional tips - -- If you plan to access your ESP from public network, think about [cybersecurity](https://github.com/luc-github/ESP3D/wiki/Cybersecurity-concerns) - -- You can use Arduino serial monitor or PlatformIO `Monitor` target to see debug info from ESP and send commends for configuration. Commands are documented in wiki/docs folder - -- After applying power the ESP takes several seconds before it will send `M117 ` on the serial port. The delay can be up to 30 seconds depending on configuration. If your printer is connected to the ESP, and has an LCD connected, the M117 command is "Print this message to the LCD" - i.e after a successful boot it will print the IP address to the printer's LCD - -- Depending on configuration file, you may pull down GPIO2 during reset/powerup to wipe the settings stored in EEPROM. - -- If behavior is not consistent, you may need to erase the full flash on ESP board. - -## Full ESP erase - -There are several options to erase flash configuration: - -- Execute `[ESP710]FORMAT` (or `[ESP710]FORMATFS` for newer versions) after upload and restart the board. It's also possible to do `[ESP444]RESET` to reset only EEPROM parameters without erasing SPIFF memory. -- In Arduino IDE, you can configure erase method in tools->Erase Flash->All Flash content. This will erase whole memory at next upload. -- Using PlatformIO if there is a target Patform->Erase Flash for your board -- Using [esptool](https://github.com/espressif/esptool) with command `esptool.exe --chip auto erase_flash` diff --git a/wiki/Line.md b/wiki/Line.md deleted file mode 100644 index 8ff70ccc..00000000 --- a/wiki/Line.md +++ /dev/null @@ -1,27 +0,0 @@ -Line Notification (https://line.me) -`[ESP610]type=LINE T1=` - -Considering you have line account and you already installed line on you phone/PC: - -1 - Go to https://notify-bot.line.me/my/ and connect with email and password -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Line/Logon.PNG) - -2 - Once connected you will be able to generate token -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Line/Generate.PNG) - -3 - Type token name on top, select recipient(s) and press Generate token -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Line/Generate2.PNG) - -4 - Once token is created you need to copy it -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Line/Token1.PNG) - -5 - You can create as many tokens you want, and delete the ones you do not need -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Line/TokenManagement.PNG) - -6 - Save the generate token in ESP3D, and set Line as notification supplier -`[ESP610]type=LINE T1=xxxxxxxxxxxxxxxxxx` - -7 - type `[ESP610]` to verify (T1 won't be displayed) - -8 - Try to send message: -`[ESP600]Hi there, test from ESP3D` diff --git a/wiki/Notifications.md b/wiki/Notifications.md deleted file mode 100644 index 1b97ad0d..00000000 --- a/wiki/Notifications.md +++ /dev/null @@ -1,29 +0,0 @@ -## From 2.1 version only -### How to setup the parameters: - -* Set/Get Notification settings -`[ESP610]type= T1= T2= TS= [pwd=]` -Note: -- Get will give type and settings only, not the protected T1/T2 -- Depending of notification supplier the parameters changes - -### How to send message : -Just add following command in your slicer's end script, or manualy on your GCODE file: -`[ESP600]msg [pwd=]` - -### How to ask printer to send command from file played from SD: -* on Repetier -`M118 [ESP600]msg` - -* on Marlin -`M118 P0 [ESP600]msg` - -* on Smoothieware -`echo [ESP600]msg` - -### Here the possible notifications setups: -* [Line Notification](https://github.com/luc-github/ESP3D/wiki/Line) (https://line.me) Free -* [Pushover Notification](https://github.com/luc-github/ESP3D/wiki/Pushover) (https://pushover.net/) not Free -* [Email using SMTP and HTTPS](https://github.com/luc-github/ESP3D/wiki/Email_and_SMTP) Free -* [Telegram Notification](https://github.com/luc-github/ESP3D/wiki/Telegram) Free (from ESP3D 3.0 version) -* [IFTTT Notification](https://github.com/luc-github/ESP3D/wiki/IFTTT) Free up to 5 applets diff --git a/wiki/Printer-firmware-compatibility.md b/wiki/Printer-firmware-compatibility.md deleted file mode 100644 index deb1f15c..00000000 --- a/wiki/Printer-firmware-compatibility.md +++ /dev/null @@ -1,52 +0,0 @@ -# Printer firmware compatibility - -## References - -FW on Board | GCODE ------------- | ------------- -Repetier | -Repetier for Davinci | -Marlin | -Marlinkimbra | -Smoothieware | -GRBL | -Reprap | - ---- - -## Temperature query - -FW on Board | GCODE | Answer | Note | Supported ? ------------- | ------------- | ------------- | ------------- | ------------- -Repetier | M105 | T:24.59 / 0 B:29.17 / 0 B@:0 @:0 T0:24.59 / 0 @0:0 T1:25.68 / 0 @1:0 | T and T0 are E0, T1 is E1, B is bed | Yes -Marlin | M105 | ok T:25.8 /0.0 B:26.1 /0.0 T0:25.8 /0.0 T1:25.5 /0.0 @:0 B@:0 @0:0 @1:0 |T and T0 are E0, T1 is E1, B is bed | Yes -MarlinKimbra | M105 | ok T:26.4 /0.0 B:26.3 /0.0 T0:26.4 /0.0 T1:26.3 /0.0 @:0 B@:0 @0:0 @1:0 |T and T0 are E0, T1 is E1, B is bed | Yes -Smoothieware | M105 | ok T:25.6 /0.0 @0 T1:24.5 /0.0 @0 B:25.7 /0.0 @0 | T is E0, T1 is E1, B is bed | Yes -GRBL| N/A | | | N/A -Reprap | M105 | T:26.5 /0.0 B:24.8 /0.0 | | TBA - ---- - -## Position query - -FW on Board | GCODE | Answer | Note | Supported ? ------------- | ------------- | ------------- | ------------- | ------------- -Repetier | M114| X:0.00 Y:0.00 Z:0.000 E:0.0000 | | Yes -Marlin | M114| X:0.00 Y:0.00 Z:0.00 E:0.00 Count X: 0 Y:0 Z:0 | | Yes -MarlinKimbra | M114| X:0.00 Y:0.00 Z:0.00 E:0.00 Count X:0 Y:0 Z:0 | | Yes -Smoothieware | M114| ok C: X:0.0000 Y:0.0000 Z:0.0000 E:0.000 | | Yes -GRBL| ?| <Idle|MPos:10.000,0.000,0.000|FS:0,0 |Ov:71,100,147> | | Yes -Reprap | M114 | X:0.000 Y:0.000 Z:0.000 E0:0.0 E1:0.0 E2:0.0 Count 0 0 0 User 0.0 0.0 0.0 | | TBA - ---- - -## SD Card file list - -FW on Board | GCODE | Answer | Note | Supported ? ------------- | ------------- | ------------- | ------------- | ------------- -Repetier | M20 | Begin file list
sample1.g 599
MYFOLDER/
End file list
| filename and size, folder name end with / | Yes -Marlin | M20 | Begin file list
`CURA~1.GCO`
`/MYFOLDER/CURA~1.GCO`
End file list | only filename, folder name start with / | Yes -MarlinKimbra | M20 | Begin file list
cura.gcode
MYFOLDER/
MYFOLDER/cura.gcode
End file list | only filename, folder name end with / | Yes -Smoothieware | M20 | Begin file list
myfolder/
config.txt
End file list | only filename, folder name end with / | Yes -GRBL| N/A| | | N/A -Reprap | M20 S2 P/ | {"dir":"/","files":["*System Volume Information","*sys","AxholderV5.gcode","*folder1","*New folder","New Text Document.txt","test.g","test - Copy.g","*folder1 - Copy","license.txt"],"err":0} | folder start with *, JSON format | TBA diff --git a/wiki/Pushover.md b/wiki/Pushover.md deleted file mode 100644 index 4dde4ba6..00000000 --- a/wiki/Pushover.md +++ /dev/null @@ -1,25 +0,0 @@ -# Pushover Notification (https://pushover.net/) - -`[ESP610]type=PUSHOVER T1= T2=` - -Considering you have pushover account (even just trial) and you already installed pushover client on you phone/PC: - -1 - Go to and connect with email and password -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Pushover/Logon.PNG) - -2 - Once connected you will be able to get the token 1, the user token -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Pushover/Token1.PNG) - -3 - You also need to generate an application token, which is the token 2 -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Pushover/Token2.PNG) - -4 - The token 2 generation: -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Pushover/Token2B.PNG) - -5 - Save the generate token 1 and token 2 in ESP3D -`[ESP610]type=PUSHOVER T1=xxxxxxxxxxxxxxxxxx T1=yyyyyyyyyyyyyyyyy` - -6 - type `[ESP610]` to verify (T1 and T2 won't be displayed) - -7 - Try to send message: -`[ESP600]Hi there, test from ESP3D` diff --git a/wiki/Rainmeter-skin.md b/wiki/Rainmeter-skin.md deleted file mode 100644 index e6c1477f..00000000 --- a/wiki/Rainmeter-skin.md +++ /dev/null @@ -1,5 +0,0 @@ -# Rainmeter skin - -by @StArL0rd84 - - diff --git a/wiki/Telegram.md b/wiki/Telegram.md deleted file mode 100644 index 8cded7d5..00000000 --- a/wiki/Telegram.md +++ /dev/null @@ -1,38 +0,0 @@ -# Telegram Notification (https://telegram.org/) - -`[ESP610]type=TELEGRAM T1= T2=<@chatID>` - -Considering you have Telegram account and you already installed line on you phone/PC: -You need a bot token and a channel id: -1 - Create a bot with [BotFather](https://core.telegram.org/bots#3-how-do-i-create-a-bot) - -* open telegram and chat with Botfather and type or select `/newbot` -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/newbot.jpg) -* type the name of the bot (2) and its username (3) -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/newbot2.jpg) -* Doing this you will get your bot token (4) that you need for `T1=` - -2 - Create a public channel - -* In telegram select new channel -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/newchannel.jpg) -* type channel name (1) and description (2) -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/newchannel2.jpg) -* Now you have your chai name which is your chatid without the `@` - -3 - Assign your bot as administrator of your channel so it can use it - -* press your channel title, the top banner will expand -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/channel.jpg) -* Push Administrators -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/adminchannel1.jpg) -* Look for your bot in search and add it -![image](https://raw.githubusercontent.com/wiki/luc-github/ESP3D/images/Notifications/Telegram/adminchannel2.jpg) - -4 - Save the generate token and chatID in ESP3D, and set Telegram as notification supplier -`[ESP610]type=TELEGRAM T1= T2=<@channel name>` - -5 - type `[ESP610]` to verify (T1/T2 won't be displayed) - -6 - Try to send message: -`[ESP600]Hi there, test from ESP3D` diff --git a/wiki/_Sidebar.md b/wiki/_Sidebar.md deleted file mode 100644 index 99b7f7dc..00000000 --- a/wiki/_Sidebar.md +++ /dev/null @@ -1,23 +0,0 @@ -# ESP3D Wiki - -* [Home](https://github.com/luc-github/ESP3D/wiki) -* Stating with ESP3D - * [Hardware connection](https://github.com/luc-github/ESP3D/wiki/Hardware-connection) - * [Install instructions](https://github.com/luc-github/ESP3D/wiki/Install-Instructions) - * [Printer firmware compatibility](https://github.com/luc-github/ESP3D/wiki/Printer-firmware-compatibility) -* Going further - * [Command line commands](https://github.com/luc-github/ESP3D/wiki/Command-line-commands) - * [v2.0.x](https://github.com/luc-github/ESP3D/wiki/Command-line-2_0) - * [v2.1.x](https://github.com/luc-github/ESP3D/wiki/Command-line-2_1) - * v3.0.x : work in progress - * [Cybersecurity concerns](https://github.com/luc-github/ESP3D/wiki/Cybersecurity-concerns) -* [Notifications](https://github.com/luc-github/ESP3D/wiki/Notifications) - * [Line](https://github.com/luc-github/ESP3D/wiki/Line) - * [Pushover](https://github.com/luc-github/ESP3D/wiki/Pushover) - * [Email and SMTP](https://github.com/luc-github/ESP3D/wiki/Email_and_SMTP) - * [Telegram](https://github.com/luc-github/ESP3D/wiki/Telegram) - * [IFTTT](https://github.com/luc-github/ESP3D/wiki/IFTTT) -* Needing help - * [Discussion FAQ](https://github.com/luc-github/ESP3D/discussions/categories/f-a-q) - * [Issues FAQ](https://github.com/luc-github/ESP3D/issues?q=is%3Aissue+is%3Aclosed+label%3AFAQ) - * [How to get the ESP Flash-Size](https://github.com/luc-github/ESP3D/wiki/Flash-Size) diff --git a/wiki/hardware-connection.md b/wiki/hardware-connection.md deleted file mode 100644 index be578bde..00000000 --- a/wiki/hardware-connection.md +++ /dev/null @@ -1,410 +0,0 @@ -# Hardware connection - -If your motherboard doesn't support wifi, this repo will help you add an ESP board flashed with ESP3D firmware. The ESP32 or ESP8266 MCU on ESP board supports wifi and will connect to your printer using a serial UART port thus acting as a wifi to UART bridge. The board needs to be programmed and connected properly to your printer to work. The printer motherboard will also need to be reprogrammed to enable the UART port that will be used with ESP board. - -Connection between ESP and printer board needs 4 wires: - -- ESP Tx needs to connect to Rx on MCU of printer board. -- ESP Rx needs to connect to Tx on MCU of printer board. -- You also need to power supply ESP board with with GND and 3V3 or 5V. - -## Connecting ESP board (ESP MCU is 3.3V) to 5V printer board - -__Disclaimer__ : this wiki is for reference - you are responsible of your board supporting or not 5V, we are not responsible for any damage of wrong wiring. - -ESP32 and ESP8266 MCU are supporting only 3V3. Power supply them with 5V will likelly fry them immediatelly. As MCU is supplied at 3.3V, Tx and Rx signals will be at 3.3V even when board is supplied with 5V. Wether Rx pin is supporting 5V is controversial so we will keep on the safe side and only take datahseet as reference. It's not recommended to have any signal (including Rx) be higher than power supply (3.3V here). - -There are several points to take care. One should check that - -1. MCU1 Tx voltage is lower than MCU2 supply voltage -2. Voh_min of Tx is higher than Vih_min of Rx (to check both ways) -3. Vol_max of Tx is lower than Vil_max of Rx (to check both ways) - -1 is mandatory and [resistor voltage divider bridge](https://en.wikipedia.org/wiki/Voltage_divider) or level shiffter is recommended -2 & 3 are not destructive there is just a slight risk signals are not read correctly. But it will work in most case as the limit values given by datasheets are rarelly met in mild conditions (using near 25°C and low current flowing from Tx to Rx) - -For the divider bridge a value of R1=1k and R2=2.2k will be fine. -You could also use 10k and 22k or anything near a factor 2. - -
-click to enlarge - - -## Connection diagrams for some printers and ESP boards - -- [Printer motherboards](#Printer-motherboards) - - [Anet A8 boards](#Anet-A8-boards) - - [Anycubic i3 mega - Trigorilla 8bit board](#Anycubic-i3-mega---Trigorilla-8bit-board) - - [AZSMZ LCD board](#AZSMZ-LCD-board) - - [AZSMZ-mini board](#AZSMZ-mini-board) - - [Azteeg X5 mini board](#Azteeg-X5-mini-board) - - [BIQU KFB2.0 board](#BIQU-KFB2.0-board) - - [Creality CR10 Ender 3 board](#Creality-CR10-Ender-3-board) - - [Creality Ender 4 board](#Creality-Ender-4-board) - - [Davinci 1.0/2.0 board](##davinci-1020-board) - - [Davinci 1.0A board](#Davinci-1.0A-board) - - [MKS boards](#MKS-boards) - - [MKS Smoothieware board](#MKS-Smoothieware-board) - - [RADDS board](#RADDS-board) - - [RAMPS 1.4/Re-ARM board](#ramps-14re-arm-board) - - [Smoothieboard board](#Smoothieboard-board) - - [Weedo Tina2 board](#Weedo-Tina2-board) - - [SKR Mini E3 board](#SKR-Mini-E3-board) - - [For printer boards not listed here](#For-printer-boards-not-listed-here) -- [ESP boards](#ESP-boards) - - [ESP-01](#ESP-01) - - [ESP-01 serial wifi module](#ESP-01-serial-wifi-module) - - [ESP-12E/F](#esp-12ef) - - [ESP 12F serial wifi module](#ESP-12F-serial-wifi-module) - - [ESP32-Cam](#ESP32-Cam) - - [NodeMCU V2/V3](#nodemcu-v2v3) - - [Sonoff](#Sonoff) - - [Wemos D1 mini](#Wemos-D1-mini) - - -## Printer motherboards - -### Anet A8 boards - -#### Anet boards up to v1.5 - -#### Step 1 - -You will also have to unsolder the resistors R52 and R53 – they are zero ohm resistors, and serve no other purpose than connecting the atmega chip directly to the onboard USB to UART converter (the CH340 chip). Do it VERY careful – you don’t want to damage your board. If you don’t feel confident – don’t do it. - -
-click to enlarge - -#### Step 2 - -Now prepare the printer’s motherboard. It requires a simple modification, that does not interfere with it’s operation afterwards – just solder 3 pin x 2 row male header on J8, and add 2 jumpers (or jumper wires) as shown on the picture: - -
-click to enlarge - -#### Step 3 - -Connect the ESP to J3 repsecting pinout - -
-click to enlarge - -|ESP|J3| -|:---:|:---:| -|Tx|Rx| -|Rx|Tx| -|GND|GND| -|VCC|3.3V| -|CH_PD|3.3V| - -For more Info check - -#### For connecting version 1.7 Anet boards - -Unlike older boards this board does not require you to remove any resistors. -You will have to solder two wires from number 9 and number 10 its recommender to connect these to pin 1 and 2 of J3 connector. -
-click to enlarge - ---- - -### Anycubic i3 mega - Trigorilla 8bit board - -To connect the ESP12e to the UART0. (Credits:). -(Green = RX, Blue = TX) -5V (buck to 3.3v if directly connect to ESP - most development ESP boards already have this voltage limited built-in - but check!) and GND can be taken from the AUX3 exposed connector. -UART0 is normally used by USB port so don't use both together - so this hack piggybacks on that same port at UART level. - -
-click to enlarge - -
-click to enlarge - ---- - -### AZSMZ LCD board - -
-click to enlarge - ---- - -### AZSMZ-mini board - -
-click to enlarge - -If you don't have the soldering skills to grab the connectors from the unpopulated ethernet connection, you can also get 3.3v and GND from the ISP header (bottom left on the diagram above). - ---- - -### Azteeg X5 mini board - -
-click to enlarge - ---- - -### BIQU KFB2.0 board - -all in one Ramps1.4/Mega2560 R3 controller based - -
-click to enlarge - ---- - -### Creality CR10 Ender 3 board - -For the Sanguino based CR-10 and Ender printers you will need to solder to any of the via circled (can also be done in the backside of board), or to the legs of the Arduino or ftdi. Connect TX from the board to RX of Wemos D1 mini and RX from board to TX of Wemos D1 mini. 5v and GND are located in the six pin header next to the LCD connector. - -
-click to enlarge - -Since soldering might be difficult because the solder points are so close to each other, another option is to scrape off the insulation from the traces on the backside and solder there. Be extra careful not to scrape the surrounding ground plane. You need suitable fine scraping tools for this. The picture below shows an Ender-2 PCB. - -
-click to enlarge - ---- - -### Creality Ender 4 board - -You will need to solder to small circle, or to the legs of the ATmega2560 (RXD0 pin 2, TXD0 pin 3) - -
-click to enlarge - ---- - -### Davinci 1.0/2.0 board - -
-click to enlarge - -
-click to enlarge - -
-click to enlarge - -
-click to enlarge - -
-click to enlarge - ---- - -### Davinci 1.0A board - -
-click to enlarge - -
-click to enlarge - -
-click to enlarge - -Alternate Module placement for increased WiFi range (outside metal chassis, antenna has vertical polarization) - -
-click to enlarge - ---- - -### MKS boards - -To connect the ESP3D to the MKS GEN v1.2 (but the v1.3 and above 1.4 is the most used today). - -I have used an ESP12E with the standard schematics, with one important difference, the two resistor connected to the RX pin are substituted by a 1N4148 diode, like in the Adafruit Huzzah board. -
-click to enlarge - -ESP12E is connected to the AUX1 - -ESP12E RX is connected to the pin NEAR GND of the upper row (Marked TXD on pinout.) -ESP12E TX is connected to the adiacent pin at the end of the upper row (Marked RXD on pinout.) - -
-click to enlarge - ---- - -### MKS Smoothieware board - -
-click to enlarge - ---- - -### RADDS board - -
-click to enlarge -
-click to enlarge - ---- - -### RAMPS 1.4/Re-ARM board - -Ramps 1.4 can be used on Arduino Mega (repetier/marlin) and Re-ARM for ramps boards (smoothieware/marlin) -
-click to enlarge - -Alternative pins if use Re-ARM (J4/UART port) - -
-click to enlarge - ---- - -### Smoothieboard board - -
-click to enlarge - ---- - -### Weedo Tina2 board - -This printer is also brand labelled as **Monoprice MP cadet 3D printer** - -
-click to enlarge - -In marlin this connection is **serial port 3**. - -Note the Mega2560 is 5V powered and ESP is 3V3 powered. - ---- - -### SKR Mini E3 board - -This board is from Bigtreetech and went through various hardware revisions; all of them still feature a TFT pin header which is where you can tap the TX and RX needed. The wiring below is made with a 1.2 board, but the same applies for the other revisions as well; if you need the exact schematic for your mainboard version, you can check [Bigtreetech's github repository](https://github.com/bigtreetech/BIGTREETECH-SKR-mini-E3/tree/master/hardware). - - -
- - -You literally cannot miss it because the TFT connector is labeled on the board; you can use dupont connectors for the wiring job, no soldering skills needed as long as your ESP comes with pre soldered headers. -Just a heads up: the TFT connector provides 5V DC, so be sure to provide them on the correct ESP pin and, most importantly, if your ESP can work with 5 volts as input. You should also pay attention on the board orientation in the schematic, although I oriented it the same way as the actual picture on the left so it's easier for you. - ---- - -### For printer boards not listed here - -Vast majority of printers have an USB port that is converted to UART before going to MCU. Many printers also have additional (unused) UART port you can use. When possible, always use the additional port for connecting ESP to printer board. When no additional UART port is available you might use the Tx and Rx lines between USB/UART converter and MCU but it's recommended to cut (in a reversible way) the line to USB/UART converter to avoid conflicts. - -If the board is ATmega based the simplest way to find a usable UART port for the ESP is to open ATmega datasheet. - -## ESP boards - -### ESP-01 - -- Use GPIO2 to ground to reset all settings in hard way - 2-6 sec after boot / not before!! Set GPIO2 to ground before boot change boot mode and go to special boot that do not reach FW. Currently boot take 10 sec - giving 8 seconds to connect GPIO2 to GND and do an hard recovery for settings -- Use GPIO0 to ground to be in update mode - -
-click to enlarge - ---- - -### ESP-01 serial wifi module - -
-click to enlarge - -more info about the Breakout PCB: - ---- - -### ESP-12E/F - -ESP need 3.3v, it is not 5v tolerant, if printer board use more than 3.3V like 5V on ramps. -
-click to enlarge - -you can also use Logic LevelConverter Bi-Directional - -
-click to enlarge - -In order to flash some ESP12E/F boards via their UART interface, the following pins need to be connected: - -- VCC to GPIO2 -- GND to GPIO0 - -This has been tested with ESP-12-E boards labeled "ESP8266 For ESP3D FYSETC.COM" - ---- - -### ESP 12F serial wifi module - -We can flash our loved ESP3D to cheap ESP-12F based serial wifi module (eg [from aliexpress](https://www.aliexpress.com/item/ESP8266-ESP-12F-Serial-WIFI-Wireless-Transceiver-Module-For-Arduino-ESP-12F-Adapter-Expansion-Board-For/32804504326.html) ). It contains built in 2-way levelshifter/bi-directional logic level converter. So we can power and use via 5V uart from the 3d printers' motherboard. - -- We need to manualy ground the ```IO0``` while powering up to start in flash mode while powering up (there is no switch for that, neither for reset) - -
click to enlarge -- I used FTDI adapter as usb2serial -- We have to see in console/serial monitor boot mode is (**1**,7). - - baudrate: 74880 - - ```rst cause:2, boot mode:(3,7)``` -- Then flash like other esp based board for esp3d - - [check flash size](https://github.com/luc-github/ESP3D/wiki/Flash-Size). Mine has 4M - - [Install](https://github.com/luc-github/ESP3D/wiki/Install-Instructions) - ---- - -### ESP32-Cam - -Once the board is programmed, the wiring to the printer board should be like this: - -
-click to enlarge - -Note: 5V is power supply input and 3V3 is output from regulator. UART Tx and RX signals will be 3.3V - ---- - -### NodeMCU V2/V3 - -
-click to enlarge - ---- - -### Sonoff - -
-click to enlarge - -Relay is connected by GPIO12, it can be handled using ESP201 command: - - *Get/Set pin value - [ESP201]P V [PULLUP=YES RAW=YES] - if no V get P value - if V 0/1 set INPUT_PULLUP value, but for GPIO16 INPUT_PULLDOWN_16 - GPIO1 and GPIO3 cannot be used as they are used for serial - if PULLUP=YES set input pull up, if not set input - if RAW=YES do not set pinmode just read value - -So `[ESP201]P12 V0` should be off and `[ESP201]P12 V1` should be on - ---- - -### Wemos D1 mini - -Connection with logic level conveter: -
-click to enlarge - -example: -
-click to enlarge - -printed cases: -* -* diff --git a/wiki/images/AZSMZ-mini/AZSMZ-12864-LCD.jpg b/wiki/images/AZSMZ-mini/AZSMZ-12864-LCD.jpg deleted file mode 100644 index 01928cef..00000000 Binary files a/wiki/images/AZSMZ-mini/AZSMZ-12864-LCD.jpg and /dev/null differ diff --git a/wiki/images/AZSMZ-mini/AZSMZ-mini.jpg b/wiki/images/AZSMZ-mini/AZSMZ-mini.jpg deleted file mode 100644 index 669362dc..00000000 Binary files a/wiki/images/AZSMZ-mini/AZSMZ-mini.jpg and /dev/null differ diff --git a/wiki/images/Anet/board.jpg b/wiki/images/Anet/board.jpg deleted file mode 100644 index 4b31857b..00000000 Binary files a/wiki/images/Anet/board.jpg and /dev/null differ diff --git a/wiki/images/Anet/image00-232x300.jpg b/wiki/images/Anet/image00-232x300.jpg deleted file mode 100644 index e6c7d300..00000000 Binary files a/wiki/images/Anet/image00-232x300.jpg and /dev/null differ diff --git a/wiki/images/Anet/image05-300x300.jpg b/wiki/images/Anet/image05-300x300.jpg deleted file mode 100644 index d689ff0c..00000000 Binary files a/wiki/images/Anet/image05-300x300.jpg and /dev/null differ diff --git a/wiki/images/Anet/image08-300x300.jpg b/wiki/images/Anet/image08-300x300.jpg deleted file mode 100644 index 6dc120df..00000000 Binary files a/wiki/images/Anet/image08-300x300.jpg and /dev/null differ diff --git a/wiki/images/AzteegX5-mini/azteeg.PNG b/wiki/images/AzteegX5-mini/azteeg.PNG deleted file mode 100644 index c500c4ca..00000000 Binary files a/wiki/images/AzteegX5-mini/azteeg.PNG and /dev/null differ diff --git a/wiki/images/BIQU-KFB2.0/board.jpg b/wiki/images/BIQU-KFB2.0/board.jpg deleted file mode 100644 index 8ef174e0..00000000 Binary files a/wiki/images/BIQU-KFB2.0/board.jpg and /dev/null differ diff --git a/wiki/images/CR10/board.jpg b/wiki/images/CR10/board.jpg deleted file mode 100644 index 3c08b1e3..00000000 Binary files a/wiki/images/CR10/board.jpg and /dev/null differ diff --git a/wiki/images/CR10/traces.jpg b/wiki/images/CR10/traces.jpg deleted file mode 100644 index 0ec0f217..00000000 Binary files a/wiki/images/CR10/traces.jpg and /dev/null differ diff --git a/wiki/images/CREALITY/CR10E3.jpg b/wiki/images/CREALITY/CR10E3.jpg deleted file mode 100644 index 3c08b1e3..00000000 Binary files a/wiki/images/CREALITY/CR10E3.jpg and /dev/null differ diff --git a/wiki/images/D1_mini/20171111_215253.jpg b/wiki/images/D1_mini/20171111_215253.jpg deleted file mode 100644 index 5c8a04e0..00000000 Binary files a/wiki/images/D1_mini/20171111_215253.jpg and /dev/null differ diff --git a/wiki/images/D1_mini/FB_IMG_1510306696875.jpg b/wiki/images/D1_mini/FB_IMG_1510306696875.jpg deleted file mode 100644 index 08b0bd64..00000000 Binary files a/wiki/images/D1_mini/FB_IMG_1510306696875.jpg and /dev/null differ diff --git a/wiki/images/Davinci/backside.jpg b/wiki/images/Davinci/backside.jpg deleted file mode 100644 index 7c50e376..00000000 Binary files a/wiki/images/Davinci/backside.jpg and /dev/null differ diff --git a/wiki/images/Davinci/board.jpg b/wiki/images/Davinci/board.jpg deleted file mode 100644 index 340892df..00000000 Binary files a/wiki/images/Davinci/board.jpg and /dev/null differ diff --git a/wiki/images/Davinci/boardconnected.jpg b/wiki/images/Davinci/boardconnected.jpg deleted file mode 100644 index 8fd238ea..00000000 Binary files a/wiki/images/Davinci/boardconnected.jpg and /dev/null differ diff --git a/wiki/images/Davinci/davinci.png b/wiki/images/Davinci/davinci.png deleted file mode 100644 index 0d5964cd..00000000 Binary files a/wiki/images/Davinci/davinci.png and /dev/null differ diff --git a/wiki/images/Davinci/davinciA-1.jpg b/wiki/images/Davinci/davinciA-1.jpg deleted file mode 100644 index d3f3a078..00000000 Binary files a/wiki/images/Davinci/davinciA-1.jpg and /dev/null differ diff --git a/wiki/images/Davinci/davinciA-2.jpg b/wiki/images/Davinci/davinciA-2.jpg deleted file mode 100644 index c2cc55d1..00000000 Binary files a/wiki/images/Davinci/davinciA-2.jpg and /dev/null differ diff --git a/wiki/images/Davinci/davinciA-3.jpg b/wiki/images/Davinci/davinciA-3.jpg deleted file mode 100644 index a4ed526c..00000000 Binary files a/wiki/images/Davinci/davinciA-3.jpg and /dev/null differ diff --git a/wiki/images/Davinci/davinciA-4.jpg b/wiki/images/Davinci/davinciA-4.jpg deleted file mode 100644 index 1d5e54bf..00000000 Binary files a/wiki/images/Davinci/davinciA-4.jpg and /dev/null differ diff --git a/wiki/images/Davinci/screen.jpg b/wiki/images/Davinci/screen.jpg deleted file mode 100644 index a3293219..00000000 Binary files a/wiki/images/Davinci/screen.jpg and /dev/null differ diff --git a/wiki/images/ESP/ESP12.png b/wiki/images/ESP/ESP12.png deleted file mode 100644 index 3abe3b04..00000000 Binary files a/wiki/images/ESP/ESP12.png and /dev/null differ diff --git a/wiki/images/ESP/ESPcam32.png b/wiki/images/ESP/ESPcam32.png deleted file mode 100644 index a6f26c8a..00000000 Binary files a/wiki/images/ESP/ESPcam32.png and /dev/null differ diff --git a/wiki/images/HW/Wires.png b/wiki/images/HW/Wires.png deleted file mode 100644 index b6e78411..00000000 Binary files a/wiki/images/HW/Wires.png and /dev/null differ diff --git a/wiki/images/HW/WiresESP12E.png b/wiki/images/HW/WiresESP12E.png deleted file mode 100644 index d745235e..00000000 Binary files a/wiki/images/HW/WiresESP12E.png and /dev/null differ diff --git a/wiki/images/HW/logic.PNG b/wiki/images/HW/logic.PNG deleted file mode 100644 index eea64601..00000000 Binary files a/wiki/images/HW/logic.PNG and /dev/null differ diff --git a/wiki/images/IFTTT/accountCreation1.png b/wiki/images/IFTTT/accountCreation1.png deleted file mode 100644 index 463ce507..00000000 Binary files a/wiki/images/IFTTT/accountCreation1.png and /dev/null differ diff --git a/wiki/images/IFTTT/activity1.png b/wiki/images/IFTTT/activity1.png deleted file mode 100644 index 0b77e7c7..00000000 Binary files a/wiki/images/IFTTT/activity1.png and /dev/null differ diff --git a/wiki/images/IFTTT/activity2.png b/wiki/images/IFTTT/activity2.png deleted file mode 100644 index f3a27cb1..00000000 Binary files a/wiki/images/IFTTT/activity2.png and /dev/null differ diff --git a/wiki/images/IFTTT/applets.png b/wiki/images/IFTTT/applets.png deleted file mode 100644 index c301cd00..00000000 Binary files a/wiki/images/IFTTT/applets.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook1.png b/wiki/images/IFTTT/createWebHook1.png deleted file mode 100644 index 8e7ca0d1..00000000 Binary files a/wiki/images/IFTTT/createWebHook1.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook11.png b/wiki/images/IFTTT/createWebHook11.png deleted file mode 100644 index 133be569..00000000 Binary files a/wiki/images/IFTTT/createWebHook11.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook12.png b/wiki/images/IFTTT/createWebHook12.png deleted file mode 100644 index 10ec551e..00000000 Binary files a/wiki/images/IFTTT/createWebHook12.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook2.png b/wiki/images/IFTTT/createWebHook2.png deleted file mode 100644 index ea20dacd..00000000 Binary files a/wiki/images/IFTTT/createWebHook2.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook3.png b/wiki/images/IFTTT/createWebHook3.png deleted file mode 100644 index 3883fdbc..00000000 Binary files a/wiki/images/IFTTT/createWebHook3.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook4.png b/wiki/images/IFTTT/createWebHook4.png deleted file mode 100644 index 3f9d11ed..00000000 Binary files a/wiki/images/IFTTT/createWebHook4.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook5.png b/wiki/images/IFTTT/createWebHook5.png deleted file mode 100644 index 02ad29fb..00000000 Binary files a/wiki/images/IFTTT/createWebHook5.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook6.png b/wiki/images/IFTTT/createWebHook6.png deleted file mode 100644 index 61b12293..00000000 Binary files a/wiki/images/IFTTT/createWebHook6.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook7.png b/wiki/images/IFTTT/createWebHook7.png deleted file mode 100644 index d39f553f..00000000 Binary files a/wiki/images/IFTTT/createWebHook7.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook8.png b/wiki/images/IFTTT/createWebHook8.png deleted file mode 100644 index c221f352..00000000 Binary files a/wiki/images/IFTTT/createWebHook8.png and /dev/null differ diff --git a/wiki/images/IFTTT/createWebHook9.png b/wiki/images/IFTTT/createWebHook9.png deleted file mode 100644 index 6257141b..00000000 Binary files a/wiki/images/IFTTT/createWebHook9.png and /dev/null differ diff --git a/wiki/images/IFTTT/manageservice.png b/wiki/images/IFTTT/manageservice.png deleted file mode 100644 index d4a7f60c..00000000 Binary files a/wiki/images/IFTTT/manageservice.png and /dev/null differ diff --git a/wiki/images/IFTTT/manageservice1.png b/wiki/images/IFTTT/manageservice1.png deleted file mode 100644 index 013a1522..00000000 Binary files a/wiki/images/IFTTT/manageservice1.png and /dev/null differ diff --git a/wiki/images/IFTTT/manageservice2.png b/wiki/images/IFTTT/manageservice2.png deleted file mode 100644 index 11b843a2..00000000 Binary files a/wiki/images/IFTTT/manageservice2.png and /dev/null differ diff --git a/wiki/images/IFTTT/manageservice3.png b/wiki/images/IFTTT/manageservice3.png deleted file mode 100644 index 8ef9a169..00000000 Binary files a/wiki/images/IFTTT/manageservice3.png and /dev/null differ diff --git a/wiki/images/MKS-1.2/board.png b/wiki/images/MKS-1.2/board.png deleted file mode 100644 index 9458d3b9..00000000 Binary files a/wiki/images/MKS-1.2/board.png and /dev/null differ diff --git a/wiki/images/MKS-1.2/wires.png b/wiki/images/MKS-1.2/wires.png deleted file mode 100644 index 984943fb..00000000 Binary files a/wiki/images/MKS-1.2/wires.png and /dev/null differ diff --git a/wiki/images/MKS-SMOOTHIEWARE/MKS-smoothie.png b/wiki/images/MKS-SMOOTHIEWARE/MKS-smoothie.png deleted file mode 100644 index c1ed7912..00000000 Binary files a/wiki/images/MKS-SMOOTHIEWARE/MKS-smoothie.png and /dev/null differ diff --git a/wiki/images/NodeMCU/NodeMCU.PNG b/wiki/images/NodeMCU/NodeMCU.PNG deleted file mode 100644 index e7d7fc39..00000000 Binary files a/wiki/images/NodeMCU/NodeMCU.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Email/google.PNG b/wiki/images/Notifications/Email/google.PNG deleted file mode 100644 index 5f17cd36..00000000 Binary files a/wiki/images/Notifications/Email/google.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Line/Generate.PNG b/wiki/images/Notifications/Line/Generate.PNG deleted file mode 100644 index 4a9fa0cf..00000000 Binary files a/wiki/images/Notifications/Line/Generate.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Line/Generate2.PNG b/wiki/images/Notifications/Line/Generate2.PNG deleted file mode 100644 index 5a22b195..00000000 Binary files a/wiki/images/Notifications/Line/Generate2.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Line/Logon.PNG b/wiki/images/Notifications/Line/Logon.PNG deleted file mode 100644 index 23fba43d..00000000 Binary files a/wiki/images/Notifications/Line/Logon.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Line/Token1.PNG b/wiki/images/Notifications/Line/Token1.PNG deleted file mode 100644 index 718cea39..00000000 Binary files a/wiki/images/Notifications/Line/Token1.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Line/TokenManagement.PNG b/wiki/images/Notifications/Line/TokenManagement.PNG deleted file mode 100644 index b614bb7d..00000000 Binary files a/wiki/images/Notifications/Line/TokenManagement.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Pushover/Logon.PNG b/wiki/images/Notifications/Pushover/Logon.PNG deleted file mode 100644 index f23dd8aa..00000000 Binary files a/wiki/images/Notifications/Pushover/Logon.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Pushover/Token1.PNG b/wiki/images/Notifications/Pushover/Token1.PNG deleted file mode 100644 index 64e93c88..00000000 Binary files a/wiki/images/Notifications/Pushover/Token1.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Pushover/Token2.PNG b/wiki/images/Notifications/Pushover/Token2.PNG deleted file mode 100644 index 104e5cd6..00000000 Binary files a/wiki/images/Notifications/Pushover/Token2.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Pushover/Token2B.PNG b/wiki/images/Notifications/Pushover/Token2B.PNG deleted file mode 100644 index c3b65e5a..00000000 Binary files a/wiki/images/Notifications/Pushover/Token2B.PNG and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/adminchannel1.jpg b/wiki/images/Notifications/Telegram/adminchannel1.jpg deleted file mode 100644 index be70d118..00000000 Binary files a/wiki/images/Notifications/Telegram/adminchannel1.jpg and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/adminchannel2.jpg b/wiki/images/Notifications/Telegram/adminchannel2.jpg deleted file mode 100644 index b168d2f7..00000000 Binary files a/wiki/images/Notifications/Telegram/adminchannel2.jpg and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/channel.jpg b/wiki/images/Notifications/Telegram/channel.jpg deleted file mode 100644 index decd5322..00000000 Binary files a/wiki/images/Notifications/Telegram/channel.jpg and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/newbot.jpg b/wiki/images/Notifications/Telegram/newbot.jpg deleted file mode 100644 index 9e60a12c..00000000 Binary files a/wiki/images/Notifications/Telegram/newbot.jpg and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/newbot2.jpg b/wiki/images/Notifications/Telegram/newbot2.jpg deleted file mode 100644 index 1664e7cf..00000000 Binary files a/wiki/images/Notifications/Telegram/newbot2.jpg and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/newchannel.jpg b/wiki/images/Notifications/Telegram/newchannel.jpg deleted file mode 100644 index b717d5eb..00000000 Binary files a/wiki/images/Notifications/Telegram/newchannel.jpg and /dev/null differ diff --git a/wiki/images/Notifications/Telegram/newchannel2.jpg b/wiki/images/Notifications/Telegram/newchannel2.jpg deleted file mode 100644 index 42079432..00000000 Binary files a/wiki/images/Notifications/Telegram/newchannel2.jpg and /dev/null differ diff --git a/wiki/images/RADDS/RADDS.png b/wiki/images/RADDS/RADDS.png deleted file mode 100644 index 308958f1..00000000 Binary files a/wiki/images/RADDS/RADDS.png and /dev/null differ diff --git a/wiki/images/RADDS/screen.jpg b/wiki/images/RADDS/screen.jpg deleted file mode 100644 index 7643550c..00000000 Binary files a/wiki/images/RADDS/screen.jpg and /dev/null differ diff --git a/wiki/images/RAMPS1.4/RAMPS.PNG b/wiki/images/RAMPS1.4/RAMPS.PNG deleted file mode 100644 index bbcd37e7..00000000 Binary files a/wiki/images/RAMPS1.4/RAMPS.PNG and /dev/null differ diff --git a/wiki/images/SKR-Mini-E3/mini_12_board.jpg b/wiki/images/SKR-Mini-E3/mini_12_board.jpg deleted file mode 100644 index f01edc7d..00000000 Binary files a/wiki/images/SKR-Mini-E3/mini_12_board.jpg and /dev/null differ diff --git a/wiki/images/SKR-Mini-E3/skr_mini_12_schematic.png b/wiki/images/SKR-Mini-E3/skr_mini_12_schematic.png deleted file mode 100644 index 128d8340..00000000 Binary files a/wiki/images/SKR-Mini-E3/skr_mini_12_schematic.png and /dev/null differ diff --git a/wiki/images/Smoothieware/smoothieboard-wiring.png b/wiki/images/Smoothieware/smoothieboard-wiring.png deleted file mode 100644 index 4e49d905..00000000 Binary files a/wiki/images/Smoothieware/smoothieboard-wiring.png and /dev/null differ diff --git a/wiki/images/Sonoff/Sonoff.png b/wiki/images/Sonoff/Sonoff.png deleted file mode 100644 index b33e3bae..00000000 Binary files a/wiki/images/Sonoff/Sonoff.png and /dev/null differ diff --git a/wiki/images/TINA2/weedo_tina2.jpg b/wiki/images/TINA2/weedo_tina2.jpg deleted file mode 100644 index 83c64cbc..00000000 Binary files a/wiki/images/TINA2/weedo_tina2.jpg and /dev/null differ diff --git a/wiki/images/Trigorilla/board.jpg b/wiki/images/Trigorilla/board.jpg deleted file mode 100644 index 994f3b01..00000000 Binary files a/wiki/images/Trigorilla/board.jpg and /dev/null differ diff --git a/wiki/images/Trigorilla/nodemcu.jpg b/wiki/images/Trigorilla/nodemcu.jpg deleted file mode 100644 index 46df9f9a..00000000 Binary files a/wiki/images/Trigorilla/nodemcu.jpg and /dev/null differ diff --git a/wiki/images/dividerBridge.png b/wiki/images/dividerBridge.png deleted file mode 100644 index a32b2244..00000000 Binary files a/wiki/images/dividerBridge.png and /dev/null differ diff --git a/wiki/images/ender4/board.jpg b/wiki/images/ender4/board.jpg deleted file mode 100644 index 19874698..00000000 Binary files a/wiki/images/ender4/board.jpg and /dev/null differ