Skip to content

Instantly share code, notes, and snippets.

@iinitz-zz
iinitz-zz / DS1621.c
Created October 14, 2012 08:18 — forked from aleksmk/DS1621.c
Simple arduino reader for the DS1621 I2C temperature sensor
#include <Wire.h>
#define DEV_ID 0x90 >> 1 // shift required by wire.h
void setup()
{
Serial.begin(9600);
Wire.begin();