1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| #include <stdio.h>
#include <dirent.h>
#include <string.h>
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
int main (void) {
DIR *dir;
struct dirent *dirent;
char dev[16]; // Dev ID
char devPath[128]; // Path to device
char buf[256]; // Data from device
char tmpData[6]; // TempA * 1000 reported by device
char path[] = "/sys/bus/w1/devices";
//ssize_t numRead;
dir = opendir (path);
if (dir != NULL) {
while ((dirent = readdir (dir)))
if (dirent->d_type == DT_LNK && strstr(dirent->d_name, "28-") != NULL) {
strcpy(dev, dirent->d_name);
printf("\nDevice: %s\n", dev); // affiche tous les ID des sondes
sprintf(devPath, "%s/%s/w1_slave\n", path, dev);
printf(devPath);
//strncpy(tmpData, strstr(buf, "t=") + 2, 5);
float tempC = strtof(tmpData, NULL);
printf("%.3f C\n", tempC / 1000);
}
(void) closedir (dir);
printf("\nfichier fermer\n");
} else {
perror ("Impossible d'ouvrire le fichier W1\n");
return 1;
}
} |
Partager