Skip to content

Instantly share code, notes, and snippets.

@polluxlabs
polluxlabs / iss_tracker_pollux_labs.ino
Created September 2, 2020 21:56
ISS Tracker with OLED Display and LED
/*********
pollux labs, 2020
https://polluxlabs.net
*********/
#include <Wire.h> //I2C
#include <Adafruit_GFX.h> //OLED-Display
#include <Adafruit_SSD1306.h> //OLED-Display
#include <ESP8266WiFi.h> //WiFI
@polluxlabs
polluxlabs / dashButtonTelegram.ino
Last active September 15, 2020 19:18
Dash Button with Telegram and ESP8266
/*
Dash Button mit Telegram und ESP8266 - polluxlabs.net
*/
#include <ESP8266WiFi.h>
#include <WiFiClientSecure.h>
#include <UniversalTelegramBot.h>
// Deine WLAN-Zugangsdaten
const char* ssid = "DEIN WLAN-NETZWERK";
@polluxlabs
polluxlabs / hintUmbrella.ino
Last active January 25, 2021 17:23
Erinnerung an den Regenschirm
/*********
Pollux Labs
Complete project details at https://polluxlabs.net
*********/
#include <Wire.h> //I2C-Verbindung
#include <Adafruit_GFX.h> //OLED-Display
#include <Adafruit_SSD1306.h> //OLED-Display
#include <ESP8266WiFi.h> //WiFI
@polluxlabs
polluxlabs / ISSAlert.ino
Last active April 3, 2023 19:26
ISS Alert
/*********
pollux labs, 2020
*********/
/*** Your WiFi Credentials ***/
const char* ssid = "your ssid";
const char* password = "your password";