Skip to content

Instantly share code, notes, and snippets.

@diyfr
diyfr / readme.md
Created September 29, 2023 14:39
AdGuard Home + Traefik

edit traefik.yml

entryPoints:
  web:
    address: ":80"
  websecure:
    address: ":443"
  dot: # <- ADD THIS
    address: ":853"  # <- ADD THIS
@pharzan
pharzan / ESP-01_reciever.ino
Last active January 8, 2022 17:28
ATTINY13 communication with ESP-01
/*
using software serial and GPIO 0 as recieve pin.
PIN 6 (ATTINY13) is connected and transmitting a number.
PIN 6 (ATTINY) --> GPIO ESP8266-01
When ESP-01 see's a new line the string is completed and printed to the Serial output of the arduino IDE.
*/
#include <SoftwareSerial.h>
SoftwareSerial mySerial(0, 2); // RX, TX