From 62c0c6a15ca31f982eea6045d7860d82d76e981c Mon Sep 17 00:00:00 2001 From: Audrius Paskevicius <42367604+audrius-paskevicius@users.noreply.github.com> Date: Thu, 29 Apr 2021 16:41:05 +0200 Subject: [PATCH] Update ds18b20.go --- ds18b20/ds18b20.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ds18b20/ds18b20.go b/ds18b20/ds18b20.go index 8536303..e64d0dc 100644 --- a/ds18b20/ds18b20.go +++ b/ds18b20/ds18b20.go @@ -34,8 +34,8 @@ func ConvertAll(o onewire.Bus, maxResolutionBits int) error { } // StartAll starts a conversion on all DS18B20 devices on the bus. -// Simmilar to ConvertAll but returns without waiting for converion to finish. -// To be used in conjunction with LastTemp() function. Convertion timing must be +// Similar to ConvertAll but returns without waiting for converion to finish. +// To be used in conjunction with LastTemp() function. Conversion timing must be // handled by other means. func StartAll(o onewire.Bus) error { if err := o.Tx([]byte{0xcc, 0x44}, nil, onewire.StrongPullup); err != nil {