freenom.com

My BAD experience with freenom.com

I had some domains registered at freenom.com

1 domain was taken from my account after about 3 month, and was pointed to random advertisement sites.

Another domain was removed from my account after about 7 month and is now for sale at freenom.com. It was not heavily used (about 5 hits a day)

If you your domain is not used many times, then you will be lucky to keep it for 1 year. But don’t forget to renew your domain in the last 2 weeks before expiring or you will loose your domain.

So it looks like freenom.com only gives out free domains for a short period of time.

I will move the remaining domains I have with them to my own domain where I will create a few more sub-domains.
This will be the only possible way to know that your site won’t disappear from the internet.

ESP32

Not all pins of the ESP32 can be used.

Below a list of all special pins of the ESP32

  1. The application can use ADC2 only when Wi-Fi driver is not ESP32 HW-607started, since the ADC is also used by the Wi-Fi driver, which has higher priority.  GPIOs 0, 2, 4, 12 – 15 and 25 – 27
  2. Some of the ADC2 pins are used as strapping pins (GPIO 0, 2, 15), so they cannot be used freely.
  3. ESP32 Core Board V2 / ESP32 DevKitC: GPIO 0 cannot be used due to external auto program circuits.
  4. ESP-WROVER-KIT V3: GPIO 0, 2, 4 and 15 cannot be used due to external connections for different purposes.
  5.  The hall sensor is internal to ESP32, reading from it uses channels 0 and 3 of ADC1 (GPIO 36 and 39). Do not connect anything else to these pins and do not change their configuration. Otherwise it may affect the measurement of low value signal from the sensor.
  6. Pins 34-39 are input only
  7. GPIO 6-11 are used for the flash, so you can not use them.
  8. Serial0 is on GPIO 1 & 3 (TX RX). Serial2 on on GPIO 17 & 16 (TX RX)
    Serial1 is per default on GPIO 9 & 10, but they are used for Flash.
    You can modify Arduino\hardware\espressif\esp32\cores\esp32\HardwareSerial.cpp to assing different GPIO pins.
  9. I2C pins: 21 = SDA & 22 = SCL
if(_uart_nr == 1 && rxPin < 0 && txPin < 0) {
        rxPin = 9;
        txPin = 10;
    }