24 lines
336 B
Plaintext
24 lines
336 B
Plaintext
#include <Verwarming.h>
|
|
|
|
// Library for "Verwarming"
|
|
// by Kenneth van Ewijk <http://www.kennyboy.nl>
|
|
|
|
// Demostrates how to do something with the Verwarming library
|
|
|
|
// Created 16 February 2014
|
|
|
|
Verwarming heater = Verwarming();
|
|
|
|
|
|
void setup()
|
|
{
|
|
heater.setTemp(20);
|
|
heater.setState(true);
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
//Do stuff with heater
|
|
}
|
|
|