Search found 37 matches

by baobab
Tue Oct 18, 2022 5:44 am
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: daylength delta?
Replies: 4
Views: 1088

Re: daylength delta?

In case anyone is looking for a solution, here is how I solved it. The python script below gets executed via a cron job at 23:55 of every day. The resulting json file contains the change in day length and can then be processed in many different ways. #!/usr/bin/env python3 import requests import jso...
by baobab
Tue Aug 09, 2022 4:15 am
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: daylength delta?
Replies: 4
Views: 1088

daylength delta?

Hello, Is there a way to obtain the day length delta value between now and a stated point in time in the past? I tried this: [mbsystem-daylength-delta24h:--] in a template but it does not work. I am trying to display the increase/decrease in the length of day compared to yesterday in a dashboard. Th...
by baobab
Wed Mar 02, 2022 3:07 pm
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: Meteobridge not rebooting. **solved**
Replies: 3
Views: 1068

Re: Meteobridge not rebooting

Thanks for your response. Turns out the Meteobridge's entry in my router's DHCP IP assignment table was erased by accident (not sure how) and it was thus assigned a different IP address. Not at all a Meteobridge issue and I feel silly for not thinking of that myself.

Baobab.
by baobab
Tue Mar 01, 2022 6:13 pm
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: Meteobridge not rebooting. **solved**
Replies: 3
Views: 1068

Meteobridge not rebooting. **solved**

Hello - after doing a system restart to pull the newest firmware my Meteobridge no longer boots up properly. The web UI does not load. I've done a number of hard restarts to try to get it to work but no luck. The samba share becomes available after a while so the OS is booting but the web ui does no...
by baobab
Thu Jan 13, 2022 7:12 am
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: average of the daily max/min temperatures for a given month
Replies: 2
Views: 817

Re: average of the daily max/min temperatures for a given month

OK. Thanks for the reply. Here is one (not pretty) way of solving it using a bit of javascript in case anyone else is looking for a solution. Baobab <td id="jan21"> <script> function january21() { return Math.round(([th0temp-max@20210101] + [th0temp-max@20210102] + [th0temp-max@20210103] +...
by baobab
Wed Jan 12, 2022 5:09 am
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: average of the daily max/min temperatures for a given month
Replies: 2
Views: 817

average of the daily max/min temperatures for a given month

Hello, Using the template function, is there a way to get the average of the daily maximum or minimum temperatures for a given month? I've looked through the template documentation but cannot find any reference to a way of doing this. Ultimately, i could pull the high of each day and use that to com...
by baobab
Wed Nov 04, 2020 9:10 am
Forum: Meteobridge Discussion
Topic: Help with script
Replies: 1
Views: 950

Help with script

Hello, I need some help solving a head scratcher. I am trying to run a custom script as an event in Meteobridge - Raspberry Pi edition. When I run it from the OpenWRT command line it works as intended - i.e the value of "$a" is published via mqtt (and when echo is uncommented the wind0 val...
by baobab
Thu Oct 29, 2020 5:42 am
Forum: Raspberry PI
Topic: RPi Model 3B+ - NOT COMPATIBLE
Replies: 5
Views: 6328

Re: RPi Model 3B+ - NOT COMPATIBLE

Thanks for the reply. I’m not taking issue with it not working on 3B+. I understand the technical reasons and that it would take effort to port it to that device. What, I would suggest is that the information provided is not as clear as it could be. Not every model of RPi 2 that it works on is liste...
by baobab
Wed Oct 28, 2020 6:03 am
Forum: Raspberry PI
Topic: RPi Model 3B+ - NOT COMPATIBLE
Replies: 5
Views: 6328

RPi Model 3B+ - NOT COMPATIBLE

Hello,

Can you please update the information on the Meteohub website to clearly state that the image for the Raspberry Pi is NOT compatible with model 3B+. I just spent $50 on a 3B+ to upgrade from my old iConnect only to realize it won’t work.

Thank you.

Baobab
by baobab
Tue Oct 20, 2020 3:07 am
Forum: Meteobridge Discussion
Topic: MQTT for Meteobridge Nano. **closed**
Replies: 3
Views: 1340

Re: MQTT for Meteobridge Nano. **closed**

Thank you for the concise answer. That makes the decision whether or not Meteobridge Nano is a suitable replacement for Meteohub easy. As far as integration with OpenHAB goes, the standard approach through which this is achieved is with a binding written for whatever thing is intended to be integrat...
by baobab
Mon Oct 19, 2020 4:43 pm
Forum: Meteobridge Discussion
Topic: MQTT for Meteobridge Nano. **closed**
Replies: 3
Views: 1340

MQTT for Meteobridge Nano. **closed**

Hello, Are there any plans to give Meteobridge Nano the ability to publish data via MQTT? Alternatively, does Meteobridge have the ability to run a python plugin script the way Meteohub can as that would offer an alternative to built-in MQTT publishing capability? My Meteohub setup failed recently d...
by baobab
Sat Oct 17, 2020 3:43 pm
Forum: Meteobridge PRO/PRO2/NANOSD/RPI/VM Discussion
Topic: mqtt
Replies: 8
Views: 4724

Re: mqtt

Hi - for me the use case for MQTT would be easy integration with OpenHAB. I found a way to get my old Meteohub set up to publish data in MQTT format using a python plug-in script. I’m currently considering the Meteobridge Nano to replace my old and no longer functioning Meteohub setup but lack of MQ...
by baobab
Sat Dec 17, 2016 8:04 pm
Forum: Meteohub Application
Topic: MQTT - **SOLVED**
Replies: 1
Views: 3150

Re: MQTT

Here is how I solved the problem outlined in the original post. The goal is to get sensor data into Meteohub via MQTT mapped to the appropriate sensor (thx, datay, thbz, etc). The first part of the solution I used is specific to the iConnect version of Meteohub and was needed to overcome some issues...
by baobab
Mon Nov 07, 2016 6:12 pm
Forum: Meteohub Application
Topic: MQTT - **SOLVED**
Replies: 1
Views: 3150

MQTT - **SOLVED**

I have built a fairly extensive network of various sensors. For these, I am using MQTT and OpenHAB. I am trying to now find a way to get the sensor readings into Meteohub for evaluating, archiving, etc. Has anyone developed a means to accomplish this through a plug-in script? Ideally I would use a p...
by baobab
Mon Jun 22, 2015 5:49 am
Forum: iConnect & DC01
Topic: Latest Updates
Replies: 3
Views: 9211

Re: Latest Updates

The System Info screen on the user interface says that the version running on my system is 4.9w. When I click on the "Check for Updates" button on the Maintenance screen of the user interface it tells me that no update is available. I assumed that this is because iConnect is no longer bein...