Skip to content

Instantly share code, notes, and snippets.

View noppelmax's full-sized avatar

Maximilian Noppel noppelmax

  • Karlsruhe Institute of Technology
  • Germany
  • X @nopx15
View GitHub Profile
@noppelmax
noppelmax / removeNotRunningContainers.sh
Created January 22, 2016 18:28
Removes all not currently running docker containers
docker rm $(docker ps -a | awk '(!(/Up/) && !(/NAMES/)) {print $NF}')
@noppelmax
noppelmax / equinox_schild_v1.ino
Created March 9, 2018 14:37
equinox_schild_v1
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
#define PIN 6
#define NUM_LEDS 85
#define BRIGHTNESS 50
@noppelmax
noppelmax / NexTemperaturSensorsCode_v2.ino
Created April 5, 2020 13:43
NewTemperaturSensorsCode_V2
#include <ArduinoOTA.h>
#include <ArduinoJson.h>
#include <DHT.h>
#include <ESP8266WiFi.h>
#include <PubSubClient.h>