Read temperatures from a DS1620 sensor connected to an Arduino using Firmata and Python/pymata-aio
Inside the arduino directory you will find:
- Libraries directory with a modified DS1620 library
- StandardFirmata sketch with DS1620 support in 1SHOT mode
- StandardFirmataContinuous sketch with DS1620 support in continuous mode
The main python3 script serves as an example of how to use Pymata to retrieve the temperature from our custom Firmata.
DS1620_CONFIG = 0x30
DS1620_TEMP = 0x31
DS1620_TEMP_RESPONSE = 0x32
Licensed under the LGPL v2.1, see LICENSE file for details. See included library folders for respective licenses.