Skip to content

tayfunulu/ModemRebooter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ModemRebooter

SONOFF S20/S26 - Internet Checker and automatic model rebooter with micropython

Some modems and some service providers do not have a stable internet connection and sometimes the internet connection is randomly disconnected. In such cases, the best solution is to restart the modem. It is an important problem especially for people who remotely connect to devices at home.

My friend Mr. Cenap came to me with a similar problem. I prepared this product and small codes for him. I preferred to use a sonoff's smart plug to make it tidy. In this way, it was both a safe and visually better...

image

Device : SONOFF S20 / S26
Device for serial connection : FT232RL TTL USB Serial Port Adapter
Hacking : Hacking Sonoff S26 WiFi Smart Plug

Not: you could easily make your own circuit. All you need is that a microcontroller like ESP or Pico and a Relay element.

WARNING : NEVER POWER YOUR DEVICE WITH POWERLINE DURING ALL PROCESS

  1. Step: To make correct wiring between SONOFF device and USB serial Port adapter GND-GND , VCC-VCC , RX-TX , TX-RX

  2. Step: Be sure to use 3.3 Volt: Probably there is small jumper on your FTL USB serial port adaper

  3. Step: install esptool

    • install esptool on PC
    • powered device only with USB serial adapter with holding button on device to enter boot mode
    • erase device and upload newest micropython code on device ( 1 MB ESP8266 code)
    pip install esptool
    esptool.py --port /dev/ttyUSB0 erase_flash
    sudo esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=detect -fm dio 0  esp8266-1m-20220618-v1.19.1

Upload codes (All .py files) on device with your favorite method. Mine is RSHELL.

sudo pip3 install rshell
sudo rshell --buffer-size=30 -p /dev/ttyUSB0
rsync . /pyboard

image

Algorithm

image

Button Functions

one short press = rebooting 5 sec long press = delete stored wifi datas and disconnect (like factory reset)

Source :

Releases

No releases published

Packages

No packages published

Languages