Hallo zusammen,
ich hab ein kleines Problem.
Ich möchte die Temperatur mit einem DS18B20 messen und via 433 MHz senden.
Das Senden mit dem Demosketch aus VirtuelWire funktioniert ohne Probleme.
// transmitter.pde
//
// Simple example of how to use VirtualWire to transmit messages
// Implements a simplex (one-way) transmitter with an TX-C1 module
//
// See VirtualWire.h for detailed API docs
// Author: Mike McCauley (mikem@open.com.au)
// Copyright (C) 2008 Mike McCauley
// $Id: transmitter.pde,v 1.3 2009/03/30 00:07:24 mikem Exp $
#include <VirtualWire.h>
#include <OneWire.h>
void setup()
{
Serial.begin(9600); // Debugging only
Serial.println("setup");
// Initialise the IO and ISR
// vw_set_ptt_inverted(true); // Required for DR3100
vw_setup(2000); // Bits per sec
}
void loop()
{
const char *msg = "hello";
digitalWrite(13, true); // Flash a light to show transmitting
vw_send((uint8_t *)msg, strlen(msg));
vw_wait_tx(); // Wait until the whole message is gone
digitalWrite(13, false);
delay(200);
}
Wenn ich nun OneWire für den DS18B20 einbinde bekomme ich folgende Fehlermeldung:
Arduino: 1.8.5 (Windows 10), Board: "Arduino/Genuino Uno"
F:\...\libraries\OneWire-master\OneWire.cpp: In static member function 'static uint16_t OneWire::crc16(const uint8_t*, uint16_t, uint16_t)':
F:\...\libraries\OneWire-master\OneWire.cpp:554:42: error: '_crc16_update' was not declared in this scope
crc = _crc16_update(crc, input);
^
exit status 1
Fehler beim Kompilieren für das Board Arduino/Genuino Uno.
Dieser Bericht wäre detaillierter, wenn die Option
"Ausführliche Ausgabe während der Kompilierung"
in Datei -> Voreinstellungen aktiviert wäre.
Kann mir da jemand helfen?
Gruß
Kalliy