Electronics
All thermistors are
235-165-ND: FP 07 FAST TIP PROBE, 150 Kohm, at 25C
AAS-920-267D-Thermometrics-NTC-TypeFP07-041216-web.pdf
self-heating is 1C per 50 uW of power dissipation. Resistance is 150K at room temperature. Still-air thermal time constant is 100 msec.
plot of temperature increase vs. applied voltage across thermistor:
The problem with self-heating is that we are increasingly sensitive to local windspeed rather than temperature. We definitely don't want to exceed one volt across one thermistor, or 2 volts across both of them.
Paper on thermal time constant measurements in still and moving air: [15200426 - Journal of Atmospheric and Oceanic Technology] Time Constant Estimates for Radiosonde Temperature Sensors.pdf
Current stage: taking long series of data (eg a few days) to a local db to get a sense of noise, frequency characteristics
ADU Board
Jim's Arduino-based hardware
Arduino Model: MKRZERO
To use on Linux, install Arduino IDE. Next go to Tools > Board: <some-model-name> > Boards Manager...
In the Boards Manager, filter by MKRZERO, and install the Arduino SAMD Board drivers. Change the board model to MKZERO via Tools > Arduino SAMD ... Boards > Arduino MKRZERO.
Next, ensure your user is part of the `uucp` and `dialout` groups via
sudo usermod -a -G dialout -G uucp <user>
If you are unsure what the pointer to the device is, run
sudo dmesg --follow -T
and unplug/plug the device. You should see output with information about the device. You are looking for something like
/dev/ttyACM0
Finally, whenever you plug/unplug the device and get `Permission Denied` errors, add rw permissions to the file
sudo chmod a+rw /dev/ttyACM0
Now you can ingest the serial stream using Python, or in the Arduino IDE via Tools > Serial Monitor.