Skip to content

Instantly share code, notes, and snippets.

View JohanLeirnes's full-sized avatar

Johan Leirnes JohanLeirnes

  • Skellefteå, Sweden
View GitHub Profile
{
"basics": {
"name": "Johan Leirnes",
"label": "TechOps Engineer",
"image": "https://i.ibb.co/fGHmhgNZ/IMG-0045-2.jpg",
"email": "[email protected]",
"phone": "+46706508027",
"summary": "With over 13 years of experience spanning infrastructure automation, cloud platforms, and system administration, I specialize in infrastructure as code, CI/CD pipelines, and monitoring solutions. Seeing issues as challenges and always placing the customer in focus are two characteristics that have helped me throughout my professional years. Customer focus for me is important, regardless of whether I'm in contact with a customer or if it is me who is the customer. In other words, treat others like you want to be treated. Being easy to educate and knowledgeable means I quickly acquire the skills needed to perform new tasks satisfyingly.",
"location": {
"address": "Burvik 447",
@JohanLeirnes
JohanLeirnes / MQTT_ESP8266_temperature_humidity.ino
Created November 15, 2016 13:55 — forked from balloob/MQTT_ESP8266_temperature_humidity.ino
Sketch for the ESP8266 to publish temperature and humidity values received from a DHT22 to MQTT
// Get ESP8266 going with Arduino IDE
// - https://github.com/esp8266/Arduino#installing-with-boards-manager
// Required libraries (sketch -> include library -> manage libraries)
// - PubSubClient by Nick ‘O Leary
// - DHT sensor library by Adafruit
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#include <DHT.h>