Blue Iris Tools - Weather Overlay, Watchdog & more!

Blue Iris Tools - Weather Overlay, Watchdog & more! 1.6.0

Overcon

Getting the hang of it
Joined
Aug 6, 2014
Messages
196
Reaction score
31
There's nothing to try now. The update bug seemed to go away on Windows 11, at least on every computer I've tested on.
I don't think I can upgrade my Windows 10 to Windows 11 on this server I use for Blue Iris. I am hoping Windows 11 isn't a requirement for the new version. I will upgrade if Windows 11 let me. I mean, it's a Dell Precision T7810 with 190GB of ram and two Xeons with 24 cores, but stupid Microsoft requires that stupid security TPM or whatever to install. Sigh.
 

Sparkey

Pulling my weight
Joined
Apr 3, 2015
Messages
187
Reaction score
120
I don't think I can upgrade my Windows 10 to Windows 11 on this server I use for Blue Iris. I am hoping Windows 11 isn't a requirement for the new version. I will upgrade if Windows 11 let me. I mean, it's a Dell Precision T7810 with 190GB of ram and two Xeons with 24 cores, but stupid Microsoft requires that stupid security TPM or whatever to install. Sigh.
You can install Windows 11 manually. i did it on a couple of systems that did not have TPM and they worked just fine but Windows 11 sucks really really bad so I dumped it and went back to 10. You should be able to find the instructions via google. Just search for "Install Windows 11 manually" or "{Windows 11 bypass TPM requirement".
 

Tayschrenn

Young grasshopper
Joined
Aug 20, 2019
Messages
46
Reaction score
8
Location
Michigan, USA
There's nothing to try now. The update bug seemed to go away on Windows 11, at least on every computer I've tested on.

Everything else should be running smooth enough, unless I'm missing something.
For what it's worth, I just posted a thread on WU possibly full send stopping the BIT API pull. I have found a few comments over the last two years suggesting we might need to use a different source for that. No idea how complex that might be to implement though.
 

Mike

Staff member
Joined
Mar 9, 2014
Messages
2,957
Reaction score
2,593
Location
New York
For what it's worth, I just posted a thread on WU possibly full send stopping the BIT API pull. I have found a few comments over the last two years suggesting we might need to use a different source for that. No idea how complex that might be to implement though.
Can you please post a link to that thread here?
 

TonyR

IPCT Contributor
Joined
Jul 15, 2014
Messages
13,141
Reaction score
28,639
Location
Alabama
I posted my personal back for getting weather from a different source here: API connection down
I'm sure it is far from perfect but sharing in case it helps any of you deal with the WU reliability issue that was so frustrating to me.
Many thanks to @Mike for building Blue Iris Tools.
^^^^ and it's a great post, too!
 

Greg S

n3wb
Joined
Feb 18, 2023
Messages
4
Reaction score
0
Location
Floirda
For tides: I can run the following API and get the results as shown. Dates are collapsed for both readability and to hide identifying info. Next step is to figure out how to 1) get the query to execute on intervals and 2) parse the results for display on the overlay.

I'd like to display the next high and low tide times.

Code:
http://api.wunderground.com/api/[xxxx]/tide/q/pws:[yyyy].json
Code:
"tideSummary":[

    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"1.28 ft",
            "type":"High Tide"
        }
    },
    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"",
            "type":"Sunset"
        }
    },
    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"-0.08 ft",
            "type":"Low Tide"
        }
    },
    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"",
            "type":"Moonrise"
        }
    },
    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"1.22 ft",
            "type":"High Tide"
        }
    },
    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"",
            "type":"Sunrise"
        }
    },
    {
        "date":{},
        "utcdate":{},
        "data":{
            "height":"0.06 ft",
            "type":"Low Tide"
        }
    },

Edit - I found some sample code that will let me do this parsing so I'll just build that app and roll in the other feature I've been using which is Lets Encrypt certificates.


Did you figure it out?
 

Greg S

n3wb
Joined
Feb 18, 2023
Messages
4
Reaction score
0
Location
Floirda
Don't think so. When I restarted my PC and forgot to run Blue Iris Tools, the weather info didn't update anymore. Took me like 5 hours before I noticed :D
I run a script to delete the txt files once a day so I know they are live
 
Top