1-Wire – Apparaat ID’s uitlezen (Arduino)
Er is op het Arduino forum een script te vinden voor het uitlezen van 1-Wire apparaten met behulp van de OneWire bibliotheek: Wat heb je nodig? 1) OneWire arduino library Het script:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
// This sketch looks for 1-wire devices and // prints their addresses (serial number) to // the UART, in a format that is useful in Arduino sketches // Tutorial: // http://www.hacktronics.com/Tutorials/arduino-1-wire-address-finder.html #include <OneWire.h> OneWire ds(3); // Connect your 1-wire device to pin 3 void setup(void) { Serial.begin(9600); discoverOneWireDevices(); } void discoverOneWireDevices(void) { { byte i; byte present = 0; byte done = 0; byte data[12]; byte addr[8]; while ( !done ) { if ( ds.search(addr) != 1) { Serial.print("No more addresses.\n"); ds.reset_search(); done = 1; return; } else { Serial.print("Unique ID="); for( i = 1; i < 7; i++) { Serial.print(addr[i], HEX); Serial.print(":"); } Serial.println(); } delay(100); } } return; } void loop(void) { } |
Met mijn iButton DS1982 geeft dit als …