Skip to content

Latest commit

 

History

History
248 lines (168 loc) · 5.64 KB

README_zh-Hant.md

File metadata and controls

248 lines (168 loc) · 5.64 KB

English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어

LibDriver DS18B20

MISRA API License

DS18B20數字溫度計提供9位至12位溫度測量,並具有非易失性用戶可編程上限報警功能。 DS18B20通信在定義上只需要一個單總線與微處理器通信。此外,DS18B20還可以直接從數據線供電(“寄生電源”),無需外部電源。每個DS18B20都有一個唯一的64位串行代碼,允許多個DS18B20在同一單線上工作使用一個微處理器來控制大面積分佈的多個DS18B20。該芯片被用於暖通空調環境控制、溫度監控建築物、設備或機械內部的系統,以及過程監控系統。

LibDriver DS18B20是LibDriver推出的DS18B20全功能驅動,該驅動提供溫度讀取、ROM匹配溫度讀取、報警讀取和搜索ROM等功能並且它符合MISRA標準。

目錄

說明

/src目錄包含了LibDriver DS18B20的源文件。

/interface目錄包含了LibDriver DS18B20與平台無關的onewire總線模板。

/test目錄包含了LibDriver DS18B20驅動測試程序,該程序可以簡單的測試芯片必要功能。

/example目錄包含了LibDriver DS18B20編程範例。

/doc目錄包含了LibDriver DS18B20離線文檔。

/datasheet目錄包含了DS18B20數據手冊。

/project目錄包含了常用Linux與單片機開發板的工程樣例。所有工程均採用shell腳本作為調試方法,詳細內容可參考每個工程裡面的README.md。

安裝

參考/interface目錄下與平台無關的onewire總線模板,完成指定平台的onewire總線驅動。

將/src目錄,/interface目錄和/example目錄加入工程。

使用

example basic

uint8_t res;
uint8_t i;
float temperature;

res = ds18b20_basic_init();
if (res)
{
    return 1;
}

...

for (i = 0; i < 3; i++)
{
    delay_ms(2000);
    res = ds18b20_basic_read((float *)&temperature);
    if (res)
    {
        ds18b20_basic_deinit();

        return 1;
    }
    ds18b20_interface_debug_print("ds18b20: temperature is %0.2fC.\n", temperature);
    
    ...
    
}

...

ds18b20_basic_deinit();

return 0;

example match

uint8_t res;
uint8_t i;
float temperature;
uint8_t rom[8];

res = ds18b20_match_init();
if (res)
{
    return 1;
}

...

for (i = 0; i < 3; i++)
{
    delay_ms(2000);
    res = ds18b20_match_read((uint8_t *)rom, (float *)&temperature);
    if (res)
    {
        ds18b20_match_deinit();

        return 1;
    }
    ds18b20_interface_debug_print("ds18b20: temperature is %0.2fC.\n", temperature);
    
    ...
    
}

...

ds18b20_match_deinit();

return 0;

example alarm

uint8_t res;
uint8_t rom[8][8];
uint8_t num;
uint8_t i, j;

res = ds18b20_alarm_init();
if (res)
{
    return 1;
}

...

num = 8;
res = ds18b20_alarm_search((uint8_t (*)[8])rom, (uint8_t *)&num);
if (res)
{
    ds18b20_alarm_deinit();

    return 1;
}
ds18b20_interface_debug_print("ds18b20: find %d alarm rom(s).\n", num);

...

for (i = 0; i < num; i++)
{
    for (j = 0; j < 8; j++)
    {
        ds18b20_interface_debug_print("%02X ", rom[i][j]);
    }
    ds18b20_interface_debug_print(".\n");
    
    ...
    
}

...

ds18b20_alarm_deinit();

return 0;

example search

uint8_t res, i, j;
uint8_t rom[8][8];
uint8_t num;

res = ds18b20_search_init();
if (res)
{
    return 1;
}

...

num = 8;
res = ds18b20_search((uint8_t (*)[8])rom, (uint8_t *)&num);
if (res)
{
    ds18b20_search_deinit();

    return 1;
}
ds18b20_interface_debug_print("ds18b20: find %d rom(s).\n", num);

...

for (i = 0; i < num; i++)
{
    uart1_print("ds18b20: %d/%d is ", (uint32_t)(i+1), (uint32_t)num);
    for (j = 0; j < 8; j++)
    {
        ds18b20_interface_debug_print("%02X ", rom[i][j]);
    }
    ds18b20_interface_debug_print(".\n");
    
    ...
    
}

...
    
ds18b20_search_deinit();

return 0;

文檔

在線文檔: https://www.libdriver.com/docs/ds18b20/index.html

離線文檔: /doc/html/index.html

貢獻

請聯繫[email protected]

版權

版權 (c) 2015 - 現在 LibDriver 版權所有

MIT 許可證(MIT)

特此免費授予任何獲得本軟件副本和相關文檔文件(下稱“軟件”)的人不受限制地處置該軟件的權利,包括不受限制地使用、複製、修改、合併、發布、分發、轉授許可和/或出售該軟件副本,以及再授權被配發了本軟件的人如上的權利,須在下列條件下:

上述版權聲明和本許可聲明應包含在該軟件的所有副本或實質成分中。

本軟件是“如此”提供的,沒有任何形式的明示或暗示的保證,包括但不限於對適銷性、特定用途的適用性和不侵權的保證。在任何情況下,作者或版權持有人都不對任何索賠、損害或其他責任負責,無論這些追責來自合同、侵權或其它行為中,還是產生於、源於或有關於本軟件以及本軟件的使用或其它處置。

聯繫我們

請聯繫[email protected]