Skip to content

Instantly share code, notes, and snippets.

@fape
fape / esp-12f-esp3d.md
Last active June 1, 2019 14:04
Cheap ESP-12F based serial wifi module with ESP3d

I managed to flash ESP3D to cheap ESP-12F based serial wifi module (eg from aliexpress ). It contains built in 2way levelshifter. So we can power and use with 5V.

  • We need to manualy ground the IO0 to start in flash mode while powering up (there is no switch for that, neither for reset)
    • wiring
  • 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. Mine has 4M
@AndiSHFR
AndiSHFR / WiFiAutoSelector.h
Last active February 13, 2023 06:23
ESP8266 : WiFiAutoSelector - Pick wifi with best signal from a list and connect to it.
/**
* WiFiAutoSelector.h - Include file for class WiFiAutoSelector
* Copyright (c) 2016 Andreas Schaefer <asc@schaefer-it.net>
*
* A class to pick a wifi network from a list, based on the
* highest receive signal strength, and connect to it.
* Inspired by "WiFiMulti"
*
* This source code is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@drmalex07
drmalex07 / test-rrd-thrush-1.py
Created March 29, 2014 08:29
An example of interacting with RRD databases through Python's thrush module. #python #rrd #thrush
import thrush
import thrush.rrd
import random
import math
from datetime import datetime, timedelta
now = datetime.now()
step = timedelta(seconds=30)
t0 = now - timedelta(seconds=3600)