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 method:
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
The Device Tree is the modern way to specify the hardware configuration of a machine and to load and configure drivers.
The boot disk contains device trees for each of the different versions of the Pi and the loader selects the appropriate device tree for the Pi model that is booting.
The loader merges the device tree with the overlays listed in the config.txt file to produce a customized final device tree used to boot the system.
Overlays are fragments of the device tree which can be used to modify and add to the basic device tree.
Overlays can themselves be customized by specifying parameters.
When the loader parses the DT and applies all the overlays you have specified, the final DT is represented by the folders in /proc/overlay.
The DHT22 Humidity and Temperature Sensor provides an example of loading and customizing a driver.
A fairly recent innovation is the ability to load and customize drivers after the system has booted using the dtoverlay and dtparam commands.
You can easily write a program to load and configure missing drivers at runtime.
Dynamic loading of overlays doesn’t always work and unloading overlays, while possible, isn’t a good idea.
Raspberry Pi IoT In PythonUsing Linux Drivers Second Edition
Introduced to the world in 2004 by its creator Bruno Maisonnier the kid-sized, autonomous humanoid robot NAO, turns 20 this year. At less than 2 ft tall, it is small in stature, but plays a big r [ ... ]
Google has announced updates to the Responsible Generative AI Toolkit to enable it to be used with any LLM model. The Responsible GenAI Toolkit provides resources to design, build, and evaluate open A [ ... ]