Skip to content

Instantly share code, notes, and snippets.

@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 / 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 / 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";
@polluxlabs
polluxlabs / newstickerESP32.ino
Created May 13, 2020 20:30
A newsticker with an ESP32
#include <ArduinoJson.h>
#include <WiFi.h>
#include <HTTPClient.h>
// WLAN-Daten
const char* ssid = "WLAN-NETZWERK";
const char* password = "PASSWORT";
void apiCall(){
if ((WiFi.status() == WL_CONNECTED)) {
@polluxlabs
polluxlabs / pflanzenwaechterATtiny85.ino
Last active May 28, 2020 16:42
Kompakter Pflanzenwächter mit ATtiny85 und Batterie
/*
Code for the ATtiny85
https://polluxlabs.net
Copyright: CC BY-NC-ND
*/
#include <avr/sleep.h>
#include <avr/wdt.h>
#define calibrationPin 1
/*
pollux labs, 2020
*/
#include <LiquidCrystal.h>
#include <Wire.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
const int noisePin = 7;
@polluxlabs
polluxlabs / issTracker.ino
Last active June 2, 2020 10:19
ISS Tracker with an ESP8266
/*********
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 / alarmSystemESP8266.ino
Last active March 27, 2020 13:39
Alarm System for the ESP8266
/*********
Pollux Labs
https://polluxlabs.net
*********/
#include <ESP8266WiFi.h>
// WLAN-Zugangsdaten
const char* ssid = "Name deines WLAN-Netzes";
const char* password = "Dein WLAN-Passwort";
@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 / arduinoOrgan.ino
Created March 22, 2020 13:37
An Arduino Organ with Kinder Surprise
/*
Arduino Organ by pollux labs, 2020
More procects and tutorials: https://polluxlabs.net
*/
// Import the CapacitiveSensor Library.
#include <CapacitiveSensor.h>
//Define speaker pin
#define speaker 11