Pi IoT In C Using Linux Drivers -The DHT22 |
Written by Harry Fairhead | |||||||
Monday, 15 February 2021 | |||||||
Page 3 of 3
A function to check for the dht11 overlay and only load it if it isn’t already loaded is easy enough with just some string handling and the use of the popen function: #define _DEFAULT_SOURCE #include <stdio.h> #include <stdlib.h> #include <errno.h> #include <unistd.h> #include <string.h> #include <fcntl.h> FILE *doCommand(char *cmd) { FILE *fp = popen(cmd, "r"); if (fp == NULL) { printf("Failed to run command %s \n\r", cmd); exit(1); } return fp; } void checkDht11() { FILE *fd = doCommand("sudo dtparam -l"); char output[1024]; int txfound = 0; char indicator[] = "dht11 gpiopin=4"; char command[] = "sudo dtoverlay dht11 gpiopin=4"; while (fgets(output, sizeof(output), fd) != NULL) { printf("%s\n\r", output); fflush(stdout); if (strstr(output, indicator) != NULL) { txfound = 1; } } if (txfound == 0) { fd = doCommand(command); } pclose(fd); } int main(int argc, char **argv) { char buffer[25]; checkDht11(); int fd = open( "/sys/bus/iio/devices/iio:device0/name", O_RDONLY); read(fd, buffer, 25); close(fd); printf("%s", buffer); fd = open( "/sys/bus/iio/devices/iio:device0/in_temp_input", The indicator string is used to specify the string that is in the overlay listing when the driver is loaded and this isn’t necessarily the same as the string in the command string, which is the command to install the driver with any parameters that are needed. You can run this program without having to change the config.txt file. The driver remains loaded until the next reboot and is reinstalled when you next run the program. Notice that the program has to have root permissions to be able to run sudo, even if the program isn’t being run as root. Summary
Raspberry Pi IoT In C Using Linux DriversBy Harry FairheadBuy from Amazon. Contents
<ASIN:1871962641> <ASIN:B08W9V7TP9> To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.
Comments
or email your comment to: comments@i-programmer.info
<ASIN:1871962617> <ASIN:1871962455> <ASIN:1871962463> |
|||||||
Last Updated ( Tuesday, 16 February 2021 ) |