Search found 3 matches

by butzel
Sun Aug 21, 2022 3:54 pm
Forum: ESP32 boards
Topic: Fake internet access?
Replies: 2
Views: 4442

Re: Fake internet access?

Hi, tl;dr set up a dns record for connectivitycheck.gstatic.com and respond with HTTP code 204. Some background information: Your phone is trying to connect to an internet service. If successful, it believes it is online. So if you want your device (phone, OS, etc.) believe it's online, you need to ...
by butzel
Wed Sep 15, 2021 9:39 am
Forum: ESP32 boards
Topic: BrakTooth
Replies: 1
Views: 1278

Re: BrakTooth

Hallo Tr0ff, MicroPython is Opensource,you can try it on your own system ;-) First download and install ESP-IDF (in this example I used 4.2,with commit id 3212d62b2bf) WORKDIR="$HOME/workspace/micropython" mkdir -p $WORKDIR ## ESP-IDF clone # Clone ESP-IDF from github git clone -b v4.2 --recursive ...
by butzel
Fri Sep 08, 2017 10:25 pm
Forum: Programs, Libraries and Tools
Topic: Escaper.py - escape, reduce, copy files to mp-devices
Replies: 0
Views: 1744

Escaper.py - escape, reduce, copy files to mp-devices

Hi, some time ago, I wrote a small Python script, which should escape the special-chars (like ',",\n). I wanted to copy my MicroPython sources and paste it into the REPL to save it on my MicroPython-device. Over time, it got some more features. My script isn't as powerful as the rshell, but perhaps ...