Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Remove sleep_us(1) in read_bit and write_bit #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions lib/onewire/onewire.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ def read_bit(self):
pin(1) # half of the devices don't match CRC without this line
i = machine.disable_irq()
pin(0)
sleep_us(1)
pin(1)
sleep_us(1)
value = pin()
enable_irq(i)
sleep_us(40)
Expand All @@ -71,7 +69,6 @@ def write_bit(self, value):

i = machine.disable_irq()
pin(0)
sleep_us(1)
pin(value)
sleep_us(60)
pin(1)
Expand Down