Search found 86 matches

by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Just wanted to mention that the module has been updated to version 1.1.4 now. Added some validation that the saved/specified credentials actually work when executing the Connect-TelldusLive cmdlet, and I've also made some improvements on the backend service, error messages should now hopefully be at...
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Seems you are right @ArneG, I get the same behavior (and now I can't get my sensor back! :( ) I know that this has worked fine in the past, and as you say, the Telldus Live! website is broken in the same way, so seems this is a problem on their end. I'll add a support ticket to them asking about it....
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Ah, OK. Seems they have no plans to fix it?

Oh well, at least it's fixable by them manually then. Thanks for reporting back!
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Roger that! :-)
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

If you store the output from Get-TDSensorData and look in the data-property, do you see the values there?

For example:
$Sensor = Get-TDSensorData -DeviceID 123456789
$Sensor.Data
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Great! :D

Does that work for you? :)
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

I guess that could make sense, I'll try to look into it when I get a chance! Meanwhile, you could try this: $SensorData=Get-TDSensor | Get-TDSensorData $SensorData | select *, @{N='RainRate';e={ $_.data.where({$_.name -eq 'rrate'}).value }}, @{N='RainTotal';e={ $_.data.where({$_.name -eq 'rtot'}).va...
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Sorry for my late reply, somehow I didn't get any notification about your post, so I just noticed it now.

Anyway, I hope I've fixed that bug now, please update to version 1.1.6 and try again! :) (Update-Module AutomaTD -Force)

Thanks for reporting the bug!
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

huh, weird, they still work fine for me. Are you using the latest module or the old one? (AutomaTD is the new one that should work just fine)

If you're using the new one and it still doesn't work, maybe try to reauth and see if that helps.
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

I noticed they are using different api endpoints for this method at api.telldus.com (/setIgnore) and live.telldus.com (/setIgnore d ). So maybe that's why the test you did earlier didn't return anything. If you try this link you might have greater luck: https://live.telldus.com/sensor/setIgnored?id=...
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Ah, I see. That definitely explains the issues you were having. You should know the new module works more or less exactly the same as the old one in the shell (I have myself migrated all of my home automation to it without any changes except for the specified credentials), you can store the credenti...
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

hmm... You're right, something is broken with the Connect-TelldusLive cmdlet.

I will try to look into this as soon as I get a chance and update the module to fix it. I'll report back as soon as that is done!
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Doh! :banghead:

Of course! Fixed in 1.1.7! Thanks again for reporting :-)
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

So... I hope I've found and fixed the issue with the Connect-TelldusLive cmdlet.

Could you update the module to version 1.1.3 and try again?

You should be able to just run the cmdlet to connect, it should detect the login automatically within 30 seconds or so and it should ”just work” after that.
by c8h10n4o2
Fri Mar 17, 2023 9:45 am
Forum: General
Topic: PowerShell based cmdlets / Commands
Replies: 123
Views: 144356

Re: PowerShell based cmdlets / Commands

Awesome! :D Glad to hear it works now. Yes, you are exactly right. First time you use the module on a computer you run: Connect-TelldusLive -SaveCredential Then authenticate the module through the Telldus website. After that, you can simply run: Connect-TelldusLive -UseSavedCredential And the access...