Search found 45 matches
- Tue Oct 01, 2019 8:15 am
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
It's no big deal anyway. I like to have ignored sensors with no name :D In my case it's about the fact that some of my sensors get a new ID when I change batteries. The old sensor ID hangs in there (in Telldus Live sensorlist) for a long time before it's removed due to lack of new readings. For such...
- Mon Sep 30, 2019 7:37 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Set-TDSensor -NewName can not be used to delete the name (set it to blank) ?!
- Fri Mar 08, 2019 8:22 am
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Yes, either you fixed it or Telldus fixed their api. Not sure, but got lots of those timeouts you refer to during the last week or so, but now it's been 24 hours plus with no timeouts :) I've noticed that the script execution times is now back to more or less 'normal', so maybe Telldus got their api...
- Tue Jan 22, 2019 2:25 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
No problem. For a string in Delphi 'wgust' is just as friendly (or not) as 'WindGust' or any other string 

- Tue Jan 22, 2019 12:24 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Tested Oregon windsensor:
Seems to work fine with latest AutomatD, but a tiny little issue (in 'properties to output'): This windsensor sends 3 values to Telldus Live; wavg, wdir and wgust. In current AutomatD wgust is not translated into a friendly name like wavg and wdir is.
Seems to work fine with latest AutomatD, but a tiny little issue (in 'properties to output'): This windsensor sends 3 values to Telldus Live; wavg, wdir and wgust. In current AutomatD wgust is not translated into a friendly name like wavg and wdir is.
- Tue Jan 22, 2019 10:52 am
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Got my windsensor up and running today. Info will follow.
- Thu Dec 06, 2018 3:48 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
I know, just checking to see that it was intentional 

- Thu Dec 06, 2018 3:37 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Well, you did forget 'Humidity' this time? 

- Thu Dec 06, 2018 3:19 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Select-Object : The property cannot be processed because the property "Raintotal" already exists.
At AutomaTD.psm1:317 char:20
But resulting csv looks okay..
At AutomaTD.psm1:317 char:20
But resulting csv looks okay..
- Thu Dec 06, 2018 2:34 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Almost there 
Works fine when getting the complete history from all sensors, but when using switches -Deviceid and -After is does not work?

Works fine when getting the complete history from all sensors, but when using switches -Deviceid and -After is does not work?
- Thu Dec 06, 2018 1:37 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Yes, I do agree. From a neutral point of view the best approach would be to take care of various sensortypes dynamically. I myself will probably test also a windsensor in the near future :) The problem (my problem at least) is mostly related to how I want the the exporting to CSV to work and how I w...
- Thu Dec 06, 2018 11:50 am
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Does not work (as I expect at least) The output from Get-TDSensorHistoryData is different from a rainsensor and a temperature/humdity-sensor, which cause problems when exporting both types of output to the same CSV-file (with -Append-switch). To get this to work I'll have to export rainsensor-histor...
- Thu Nov 29, 2018 12:02 pm
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
That seems to work...
Quick workaround for the Get-TDSensorHistoryData also ?
Quick workaround for the Get-TDSensorHistoryData also ?
- Thu Nov 29, 2018 10:18 am
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Well, I can probably pick up the values somehow, but the best would have this intergrated nicely in AutomaTD ? I use it like this: $SensorData=Get-TDSensor | Get-TDSensorData $SensorData | Export-Csv "Sensors.csv" -Encoding utf8 One sensors on each line in sensors.csv. It would have been nice to hav...
- Thu Nov 29, 2018 9:41 am
- Forum: General
- Topic: PowerShell based cmdlets / Commands
- Replies: 123
- Views: 63290
Re: PowerShell based cmdlets / Commands
Yes I do indeed :) Data : {@{name=rrate; value=875; scale=0; lastUpdated=1543483566; max=875; maxTime=1543482344}, @{name=rtot; value=19.7; scale=0; lastUpdated=1543483566}} or, name : rrate value : 875 scale : 0 lastUpdated : 1543483566 max : 875 maxTime : 1543482344 name : rtot value : 19.7 scale ...