2016-01-17 14:05:41 +01:00
# 1-Wire Module
2016-03-05 10:47:01 +01:00
| Since | Origin / Contributor | Maintainer | Source |
| :----- | :-------------------- | :---------- | :------ |
2019-01-13 22:01:57 +01:00
| 2014-12-22 | [Zeroday ](https://github.com/funshine ) | [Zeroday ](https://github.com/funshine ) | [ow.c ](../../app/modules/ow.c )|
2016-01-17 14:05:41 +01:00
This module provides functions to work with the [1-Wire ](https://en.wikipedia.org/wiki/1-Wire ) device communications bus system.
2016-01-17 11:10:51 +01:00
## ow.check_crc16()
2016-01-17 14:05:41 +01:00
Computes the 1-Wire CRC16 and compare it against the received CRC.
2016-01-17 11:10:51 +01:00
2016-01-17 14:05:41 +01:00
#### Syntax
2016-01-17 11:10:51 +01:00
`ow.check_crc16(buf, inverted_crc0, inverted_crc1[, crc])`
#### Parameters
- `buf` string value, data to be calculated check sum in string
- `inverted_crc0` LSB of received CRC
- `inverted_crc1` MSB of received CRC
- `crc` CRC starting value (optional)
#### Returns
2016-01-17 14:05:41 +01:00
true if the CRC matches, false otherwise
2016-01-17 11:10:51 +01:00
## ow.crc16()
2016-01-17 14:05:41 +01:00
Computes a Dallas Semiconductor 16 bit CRC. This is required to check the integrity of data received from many 1-Wire devices. Note that the CRC computed here is **not** what you'll get from the 1-Wire network, for two reasons:
2016-01-17 11:10:51 +01:00
1. The CRC is transmitted bitwise inverted.
2. Depending on the endian-ness of your processor, the binary representation of the two-byte return value may have a different byte order than the two bytes you get from 1-Wire.
#### Syntax
`ow.crc16(buf[, crc])`
#### Parameters
2016-01-17 14:05:41 +01:00
- `buf` string value, data to be calculated check sum in string
- `crc` CRC starting value (optional)
2016-01-17 11:10:51 +01:00
#### Returns
2016-01-17 14:05:41 +01:00
the CRC16 as defined by Dallas Semiconductor
2016-01-17 11:10:51 +01:00
## ow.crc8()
2016-01-17 14:05:41 +01:00
Computes a Dallas Semiconductor 8 bit CRC, these are used in the ROM and scratchpad registers.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.crc8(buf)`
#### Parameters
2016-01-17 14:05:41 +01:00
`buf` string value, data to be calculated check sum in string
2016-01-17 11:10:51 +01:00
#### Returns
2016-01-17 14:05:41 +01:00
CRC result as byte
2016-01-17 11:10:51 +01:00
## ow.depower()
2016-01-17 14:05:41 +01:00
Stops forcing power onto the bus. You only need to do this if you used the 'power' flag to `ow.write()` or used a `ow.write_bytes()` and aren't about to do another read or write.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.depower(pin)`
#### Parameters
2016-01-17 14:05:41 +01:00
`pin` 1~12, I/O index
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
2021-09-08 22:34:43 +02:00
#### See also
2016-01-17 14:05:41 +01:00
- [ow.write() ](#owwrite )
- [ow.write_bytes() ](#owwrite_bytes )
2016-01-17 11:10:51 +01:00
## ow.read()
2016-01-17 14:05:41 +01:00
Reads a byte.
2016-01-17 11:10:51 +01:00
2021-09-08 22:34:43 +02:00
#### Syntax
2016-01-17 11:10:51 +01:00
`ow.read(pin)`
#### Parameters
2016-01-17 14:05:41 +01:00
`pin` 1~12, I/O index
2016-01-17 11:10:51 +01:00
#### Returns
2016-01-17 14:05:41 +01:00
byte read from slave device
2016-01-17 11:10:51 +01:00
## ow.read_bytes()
2016-01-17 14:05:41 +01:00
Reads multi bytes.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.read_bytes(pin, size)`
#### Parameters
2016-01-17 14:05:41 +01:00
- `pin` 1~12, I/O index
2016-10-16 14:18:03 +02:00
- `size` number of bytes to be read from slave device (up to 256)
2016-01-17 11:10:51 +01:00
#### Returns
`string` bytes read from slave device
2016-01-17 11:13:11 +01:00
## ow.reset()
2016-01-17 14:05:41 +01:00
Performs a 1-Wire reset cycle.
2016-01-17 11:13:11 +01:00
#### Syntax
`ow.reset(pin)`
#### Parameters
2016-01-17 14:05:41 +01:00
`pin` 1~12, I/O index
2016-01-17 11:13:11 +01:00
#### Returns
2016-01-17 14:05:41 +01:00
- `1` if a device responds with a presence pulse
- `0` if there is no device or the bus is shorted or otherwise held low for more than 250 µS
2016-01-17 11:13:11 +01:00
2016-01-17 11:10:51 +01:00
## ow.reset_search()
2016-01-17 14:05:41 +01:00
Clears the search state so that it will start from the beginning again.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.reset_search(pin)`
#### Parameters
2016-01-17 14:05:41 +01:00
`pin` 1~12, I/O index
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
## ow.search()
2016-01-17 14:05:41 +01:00
Looks for the next device.
2016-01-17 11:10:51 +01:00
#### Syntax
2021-09-08 22:34:43 +02:00
`ow.search(pin, [alarm_search])`
2016-01-17 11:10:51 +01:00
#### Parameters
2021-09-08 22:34:43 +02:00
- `pin` 1~12, I/O index
- `alarm_search` 1 / 0, if 0 a regular 0xF0 search is performed (default if parameter is absent), if 1 a 0xEC ALARM SEARCH is performed.
2016-01-17 11:10:51 +01:00
#### Returns
`rom_code` string with length of 8 upon success. It contains the rom code of slave device. Returns `nil` if search was unsuccessful.
#### See also
[ow.target_search() ](#owtargetsearch )
## ow.select()
2016-01-17 14:05:41 +01:00
Issues a 1-Wire rom select command. Make sure you do the `ow.reset(pin)` first.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.select(pin, rom)`
#### Parameters
2016-01-17 14:05:41 +01:00
- `pin` 1~12, I/O index
2017-03-15 23:12:57 +01:00
- `rom` string value, len 8, rom code of the slave device
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
#### Example
```lua
-- 18b20 Example
2020-01-02 21:38:22 +01:00
-- 18b20 Example
pin = 3
2016-01-17 11:10:51 +01:00
ow.setup(pin)
2020-01-02 21:38:22 +01:00
addr = ow.reset_search(pin)
addr = ow.search(pin)
2016-01-17 11:10:51 +01:00
if addr == nil then
2020-01-02 21:38:22 +01:00
print("No device detected.")
2016-01-17 11:10:51 +01:00
else
print(addr:byte(1,8))
2020-01-02 21:38:22 +01:00
local crc = ow.crc8(string.sub(addr,1,7))
2016-01-17 11:10:51 +01:00
if crc == addr:byte(8) then
if (addr:byte(1) == 0x10) or (addr:byte(1) == 0x28) then
print("Device is a DS18S20 family device.")
2020-01-02 21:38:22 +01:00
tmr.create():alarm(1000, tmr.ALARM_AUTO, function()
2016-01-17 11:10:51 +01:00
ow.reset(pin)
ow.select(pin, addr)
2020-01-02 21:38:22 +01:00
ow.write(pin, 0x44, 1) -- convert T command
tmr.create():alarm(750, tmr.ALARM_SINGLE, function()
ow.reset(pin)
ow.select(pin, addr)
ow.write(pin,0xBE,1) -- read scratchpad command
local data = ow.read_bytes(pin, 9)
print(data:byte(1,9))
local crc = ow.crc8(string.sub(data,1,8))
print("CRC="..crc)
if crc == data:byte(9) then
local t = (data:byte(1) + data:byte(2) * 256) * 625
local sgn = t< 0 and -1 or 1
local tA = sgn*t
local t1 = math.floor(tA / 10000)
local t2 = tA % 10000
print("Temperature="..(sgn< 0 and " - " or " " ) . . t1 . . " . " . . t2 . . " Centigrade " )
end
end)
end)
2016-01-17 11:10:51 +01:00
else
print("Device family is not recognized.")
end
else
print("CRC is not valid!")
end
end
```
2021-09-08 22:34:43 +02:00
#### See also
2016-01-17 11:10:51 +01:00
[ow.reset() ](#owreset )
## ow.setup()
2016-01-17 14:05:41 +01:00
Sets a pin in onewire mode.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.setup(pin)`
#### Parameters
2016-01-17 14:05:41 +01:00
`pin` 1~12, I/O index
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
## ow.skip()
2016-01-17 14:05:41 +01:00
Issues a 1-Wire rom skip command, to address all on bus.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.skip(pin)`
#### Parameters
2016-01-17 14:05:41 +01:00
`pin` 1~12, I/O index
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
## ow.target_search()
2016-01-17 14:05:41 +01:00
Sets up the search to find the device type `family_code` . The search itself has to be initiated with a subsequent call to `ow.search()` .
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.target_search(pin, family_code)`
#### Parameters
2016-01-17 14:05:41 +01:00
- `pin` 1~12, I/O index
- `family_code` byte for family code
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
2021-09-08 22:34:43 +02:00
#### See also
2016-01-17 11:10:51 +01:00
[ow.search() ](#owsearch )
## ow.write()
2016-01-17 14:05:41 +01:00
Writes a byte. If `power` is 1 then the wire is held high at the end for parasitically powered devices. You are responsible for eventually depowering it by calling `ow.depower()` or doing another read or write.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.write(pin, v, power)`
#### Parameters
2016-01-17 14:05:41 +01:00
- `pin` 1~12, I/O index
2019-02-17 19:26:29 +01:00
- `v` byte to be written to slave device
2016-01-17 14:05:41 +01:00
- `power` 1 for wire being held high for parasitically powered devices
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
2021-09-08 22:34:43 +02:00
#### See also
2016-01-17 11:10:51 +01:00
[ow.depower() ](#owdepower )
## ow.write_bytes()
2016-01-17 14:05:41 +01:00
Writes multi bytes. If `power` is 1 then the wire is held high at the end for parasitically powered devices. You are responsible for eventually depowering it by calling `ow.depower()` or doing another read or write.
2016-01-17 11:10:51 +01:00
#### Syntax
`ow.write_bytes(pin, buf, power)`
#### Parameters
2016-01-17 14:05:41 +01:00
- `pin` 1~12, IO index
- `buf` string to be written to slave device
- `power` 1 for wire being held high for parasitically powered devices
2016-01-17 11:10:51 +01:00
#### Returns
`nil`
2021-09-08 22:34:43 +02:00
#### See also
2016-01-17 11:10:51 +01:00
[ow.depower() ](#owdepower )
2021-09-08 22:34:43 +02:00
## ow.set_timings()
Tweak different bit timing parameters. Some slow custom devices might not work perfectly well with NodeMCU as 1-wire master. Since NodeMCU ow module is bit-banging the 1-wire protocol, it is possible to adjust the timings a bit.
Note that you can break the protocol totally if you tweak some numbers too much. This should never be needed with normal devices.
#### Syntax
`ow.set_timings(reset_tx, reset_wait, reset_rx, w1_low, w1_high, w0_low, w0_high, r_low, r_wait, r_delay)`
#### Parameters
Each parameter specifies number of microseconds to delay at different stages in the 1-wire bit-banging process.
A nil value will leave the value unmodified.
- `reset_tx` pull bus low during reset (default 480)
- `reset_wait` wait for presence pulse after reset (default 70)
- `reset_rx` delay after presence pulse have been checked (default 410)
- `w1_low` pull bus low during write 1 slot (default 5)
- `w1_high` leave bus high during write 1 slot (default 52)
- `w0_low` pull bus low during write 1 slot (default 65)
- `w0_high` leave bus high during write 1 slot (default 5)
- `r_low` pull bus low during read slot (default 5)
- `r_wait` wait before reading bus level during read slot (default 8)
- `r_delay` delay after reading bus level (default 52)
#### Returns
`nil`
#### Example
```lua
-- Give 300uS longer read/write slots for slow MCU based 1-wire slave
ow.set_timings(
nil, -- reset_tx
nil, -- reset_wait
nil, -- reset_rx
nil, -- w1_low
352, -- w1_high
nil, -- w0_low
305, -- w0_high
nil, -- r_low
nil, -- r_wait
352 -- r_delay
)
```