-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds18b20.c
133 lines (96 loc) · 2.01 KB
/
ds18b20.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
Plik ds18b20.c
(minimum kodu do odczytu temperatury z ds18b20)
xyz.isgreat.org
*/
#include <avr/io.h>
#include <util/delay.h>
#include "ds18b20.h"
/**********************************************************/
unsigned char ds18b20_ConvertT(void)
{
if (!OneWireReset()) return 0;
OneWireWriteByte(0xcc); // SKIP ROM
OneWireWriteByte(0x44); // CONVERT T
return -1;
}
/***********************************************************/
int ds18b20_Read(unsigned char scratchpad[])
{
unsigned char i;
if (!OneWireReset()) return 0;
OneWireWriteByte(0xcc); // SKIP ROM
OneWireWriteByte(0xbe); // READ SCRATCHPAD
for(i=0; i<9; i++) scratchpad[i] = OneWireReadByte();
return 1;
}
/**********************************************************/
void OneWireStrong(char s)
{
if (s)
{
SET_ONEWIRE_PORT;
SET_OUT_ONEWIRE_DDR;
}
else
{
SET_IN_ONEWIRE_DDR;
}
}
/**********************************************************/
unsigned char OneWireReset()
{
CLR_ONEWIRE_PORT;
if (!(IS_SET_ONEWIRE_PIN)) return 0;
SET_OUT_ONEWIRE_DDR;
_delay_us(500);
SET_IN_ONEWIRE_DDR;
_delay_us(70);
if(!(IS_SET_ONEWIRE_PIN))
{
_delay_us(500);
return(1);
}
_delay_us(500);
return(0);
}
/**********************************************************/
void OneWireWriteByte(unsigned char byte)
{
unsigned char i;
CLR_ONEWIRE_PORT;
for (i=0; i<8; i++)
{
SET_OUT_ONEWIRE_DDR;
if (byte & 0x01)
{
_delay_us(7);
SET_IN_ONEWIRE_DDR;
_delay_us(70);
}
else
{
_delay_us(70);
SET_IN_ONEWIRE_DDR;
_delay_us(7);
}
byte >>= 1;
}
}
/***********************************************************/
unsigned char OneWireReadByte(void)
{
unsigned char i, byte = 0;
SET_IN_ONEWIRE_DDR;
for (i=0; i<8; i++)
{
SET_OUT_ONEWIRE_DDR;
_delay_us(7);
SET_IN_ONEWIRE_DDR;
_delay_us(7);
byte >>= 1;
if(IS_SET_ONEWIRE_PIN) byte |= 0x80;
_delay_us(70);
}
return byte;
}