Skip to content

Instantly share code, notes, and snippets.

View s0ren's full-sized avatar

Søren Magnusson s0ren

  • Technical Education Copenhagen - TEC
  • Stæhr Johansens vej 5, DK-2000 Frderiksberg, Denmark
  • 14:18 (UTC -12:00)
View GitHub Profile
@s0ren
s0ren / DS1621.c
Last active May 3, 2021 08:54 — forked from iinitz-zz/DS1621.c
Simple arduino reader for the DS1621 I2C temperature sensor
// origin https://gist.github.com/iinitz-zz/3887936
#include <Wire.h>
#define DEV_ID 0x90 >> 1 // shift required by wire.h
void setup()
{
Serial.begin(9600);