adafruit / DHT-sensor-library

Arduino library for DHT11, DHT22, etc Temperature & Humidity Sensors
https://learn.adafruit.com/dht
MIT License
1.97k stars 1.43k forks source link

Added Serial prints for file name/path #204

Closed V205Arduino closed 4 months ago

V205Arduino commented 1 year ago

Thank you for creating a pull request to contribute to Adafruit's GitHub code! Before you open the request please review the following guidelines and tips to help it be more easily integrated:

Added the following code to both example’s setup:

Serial.println( F("Starting " __FILE__ " from " __DATE__ __TIME__));// Prints the file name and compilation date.

Just to make it easier to know what file is running.

Thank you.