Too many times hardware interface somehow disconnects and the software hangs up. I have been able to work around this by using a script which kill cumulus application every hour and reboot it; this is the script or batch (cumulstart.bat) which I include in the start menu/directory so it launches when Windows 10 boots up:
c:
cd \Cumulus
:loop
echo Before timeouttime /T
timeout /T 3500
echo After timeout
Taskkill /IM cumulus.exe /F
timeout /T 10
START C:\Cumulus\cumulus.exe
goto loop
Otherwise I am doing a web transfer every 15min of the weather data which is available as graphs on:
I changed a little the code for the main page to insert "inside" temperature & humidity (inside the control room where the weather station is located):
  <tr class="td_temperature_data">
    <th>Indoor Temperature</th>
    <td><#intemp> <#tempunit></td>
    <th>Indoor Relative Humidity</th>
    <td><#inhum> %</td>
  </tr>
  <tr class="td_temperature_data">
    <td>External Temp</td>
    <td><#temp> <#tempunit></td>
    <td>External Rel. Humidity</td>
    <td><#hum> %</td>
  </tr>
  <tr class="td_temperature_data">
    <td>Dew Point </td>
    <td><#dew> <#tempunit></td>
    <td></td>
    <td></td>
  </tr>
Here are couple of screens available on-line:
 




