Het gebruik van software, downloads, scripts en uitleg op deze website is geheel op eigen risico, DomoticX is niet aansprakelijk voor de schade die, rechtstreeks of onrechtstreeks het gevolg is van gebruik van deze website!
Op deze pagina vind je een voorbeeld om via de ESP-01 module een DS18B20 (Dallas 1-wire) temperatuur sensor te gebruiken via de GPIO pinnen met de firmware ArduinoIDE. Hardware BESTEL NU! BESTEL NU! (WATERDICHT) De DS18B20 is nauwkeurige digitale temperatuur sensor, het is …
Het is mogelijk om met diverse sensoren een klein weerstationnetje te bouwen, op deze pagina vind je een goede opzet daarvoor, er is hierover al veel te vinden op het internet, ik heb dit ontwerp en script uitgewerkt zodat de …
Installatie van Arduino IDE libraries: Arduino info Informatie (ENG): Description This is an Arduino Library to produce square-wave of the specified frequency (and 50% duty cycle) on any Arduino pin. A duration can optionally be specified, otherwise the wave continues until …
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:
Arduino code
C++
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
Installatie van Arduino IDE libraries: Arduino info Informatie (ENG): OneWire Library OneWire lets you access 1-wire devices made by Maxim/Dallas, such as temperature sensors and ibutton secure memory. For temperature sensors, the DallasTemperature library can be used in conjunction with this …