25 lines
495 B
C++
25 lines
495 B
C++
#ifndef DS18B20_H
|
|
#define DS18B20_H
|
|
|
|
/* Scheduler include files. */
|
|
#include "FreeRTOS.h"
|
|
#include "task.h"
|
|
#include "semphr.h"
|
|
#include "queue.h"
|
|
|
|
#include <cstring>
|
|
#include <cstdio>
|
|
#include <stdbool.h>
|
|
#include "pico/stdlib.h"
|
|
#include "hardware/gpio.h"
|
|
#include "hardware/watchdog.h"
|
|
#include "../../SOFTWARE/Lib/pico-onewire/api/one_wire.h"
|
|
|
|
#define DS18B20_PIN 15 // DS18B20 引脚
|
|
#define BUFER 256
|
|
|
|
extern QueueHandle_t xQueue;
|
|
extern void DS18B20(void *pvParameters);
|
|
|
|
#endif
|