peted-davis / WeatherFlow_PiConsole

Raspberry Pi Python console for WeatherFlow Tempest and Smart Home Weather Stations
GNU General Public License v3.0
156 stars 20 forks source link

Piconsole not starting #117

Open TimoHav opened 1 year ago

TimoHav commented 1 year ago

Has been working fine so far. Today did not start.

Ubuntu 22.04.3. LTS

Here is what happened: timo@Timo-TS10:~$ wfpiconsole start [INFO ] [Logger ] Record log in /home/timo/.kivy/logs/kivy_23-09-07_3.txt [INFO ] [Kivy ] v2.1.0 [INFO ] [Kivy ] Installed at "/home/timo/.local/lib/python3.10/site-packages/kivy/init.py" [INFO ] [Python ] v3.10.12 (main, Jun 11 2023, 05:26:28) [GCC 11.4.0] [INFO ] [Python ] Interpreter at "/usr/bin/python3" [INFO ] [Logger ] Purge log fired. Processing... [INFO ] [Logger ] Purge finished! [INFO ] [Config ] Verifying station details [INFO ] [Factory ] 189 symbols loaded [INFO ] [Image ] Providers: img_tex, img_dds, img_sdl2, img_pil (img_ffpyplayer ignored) [INFO ] [Window ] Provider: sdl2 [INFO ] [GL ] Using the "OpenGL ES 2" graphics system [INFO ] [GL ] Backend used [INFO ] [GL ] OpenGL version <b'4.6 (Compatibility Profile) Mesa 23.0.4-0ubuntu1~22.04.1'> [INFO ] [GL ] OpenGL vendor <b'Intel'> [INFO ] [GL ] OpenGL renderer <b'Mesa Intel(R) HD Graphics (CHV)'> [INFO ] [GL ] OpenGL parsed version: 4, 6 [INFO ] [GL ] Shading version <b'4.60'> [INFO ] [GL ] Texture max size <16384> [INFO ] [GL ] Texture max units <32> [INFO ] [Window ] auto add sdl2 input provider [INFO ] [Window ] virtual keyboard not allowed, single mode, not docked [INFO ] [Text ] Provider: sdl2 [INFO ] [GL ] NPOT texture support is available Traceback (most recent call last): File "/home/timo/wfpiconsole/main.py", line 521, in wfpiconsole().run() File "/home/timo/.local/lib/python3.10/site-packages/kivy/app.py", line 954, in run self._run_prepare() File "/home/timo/.local/lib/python3.10/site-packages/kivy/app.py", line 924, in _run_prepare root = self.build() File "/home/timo/wfpiconsole/main.py", line 199, in build self.screenManager.add_widget(CurrentConditions()) File "/home/timo/wfpiconsole/main.py", line 440, in init self.app.astro.moonrise_moonset() File "/home/timo/wfpiconsole/lib/astronomical.py", line 198, in moonrise_moonset Moonset = self.observer.next_setting(self.moon) File "/home/timo/.local/lib/python3.10/site-packages/ephem/init.py", line 444, in next_setting return self._find_rise_or_set(body, start, use_center, +1, False) File "/home/timo/.local/lib/python3.10/site-packages/ephem/init.py", line 492, in _find_rise_or_set raise AlwaysUpError('%r is above the horizon at %s' ephem.AlwaysUpError: 'Moon' is above the horizon at 2023/9/8 17:23:06

peted-davis commented 1 year ago

This is all part of the same bug that I am currently working on. The only fix at the moment is to disable the sunrise/sunset and moonrise/moonset functionality by commenting out lines 439, 440, 443 and 444 in main.py. I will get the fixed sorted ASAP!

TimoHav commented 1 year ago

Hi Pete! Thank you for your quick answer! I have two stations with two separate displays running your software. The first we made early this summer (sun was not setting in Finland) and did not start at all, but my son Antti fixed it with the patch that was available in Pull requests section. The other one was made later this summer. So we will be waiting for your fix. I already bought some coffee to you and you can expect more then 😊

Best regards Timo Havulinna Finland @.**@.> Tel. +358 400 704704

Lähettäjä: Pete Davis @.> Lähetetty: sunnuntai 10. syyskuuta 2023 15.29 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Author @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

This is all part of the same bug that I am currently working on. The only fix at the moment is to disable the sunrise/sunset and moonrise/moonset functionality by commenting out lines 439, 440, 443 and 444 in main.py. I will get the fixed sorted ASAP!

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1712801337, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RUXBD75DW7N4FFMDVLXZWW7FANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you authored the thread.Message ID: @.**@.>>

TimoHav commented 1 year ago

Could you also think of adding the current Battery Voltage somewhere on the screen? Below date and time? During the winter time we have to use the Tempest battery booster because there is not enough sun to keep the internal battery alive. Timo

pjmpessers commented 11 months ago

@TimoHav Hello, Timo. This is possible, if you don't mind editing it yourself. Go to directory /wfpiconsole/kvlang and open file rainfall.kv with a texteditor. Look for the line ## Time and date (I think #102) and place this:

Time and date

TimeDateField:
    text: '[color=ffffffff]' + app.CurrentConditions.System['Date'] + '[/color]'
    pos_hint: {'x': 0/262, 'y': 24/202}
    size_hint_x: (262/262)
TimeDateField:
    text: '[color=ffffffff]' + app.CurrentConditions.System['Time'] + '[/color]'
    pos_hint: {'x': -45/262, 'y': 3/202}
    size_hint_x: (262/262)
TimeDateField:                      
    text: '[color=ffffffff]' + app.CurrentConditions.Status['tempest_voltage']+"V" + '[/color]'
    pos_hint: {'x': 55/262, 'y': 3/202}
    size_hint_x: (262/262)

If i'm right it will work and you see smaething like this:

20231011_224118

TimoHav commented 11 months ago

Hi! Thank you very much!

Best regards Timo

Lähettäjä: Pieter @.> Lähetetty: keskiviikko 11. lokakuuta 2023 23.57 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

@TimoHavhttps://github.com/TimoHav Hello, Timo. This is possible, if you don't mind editing it yourself. Go to directory /wfpiconsole/kvlang and open file rainfall.kv with a texteditor. Look for the line ## Time and date (I think #102https://github.com/peted-davis/WeatherFlow_PiConsole/issues/102) and place this:

Time and date

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Date'] + '[/color]'

pos_hint: {'x': 0/262, 'y': 24/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Time'] + '[/color]'

pos_hint: {'x': -45/262, 'y': 3/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.Status['tempest_voltage']+"V" + '[/color]'

pos_hint: {'x': 55/262, 'y': 3/202}

size_hint_x: (262/262)

If i'm right it will work and you see smaething like this:

[20231011_224118]https://user-images.githubusercontent.com/34476404/274416063-7c162bc9-be69-4445-b7db-c231e2b815db.jpg

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758526790, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQ7BZKSD6NCDQ2B46TX64BZ5ANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you were mentioned.Message ID: @.**@.>>

pjmpessers commented 11 months ago

Your welcome.

Verzonden vanaf mijn Galaxy

-------- Oorspronkelijk bericht -------- Van: TimoHav @.> Datum: 12-10-2023 06:09 (GMT+01:00) Aan: peted-davis/WeatherFlow_PiConsole @.> Cc: Pieter @.>, Comment @.> Onderwerp: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Hi! Thank you very much!

Best regards Timo

Lähettäjä: Pieter @.> Lähetetty: keskiviikko 11. lokakuuta 2023 23.57 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

@TimoHavhttps://github.com/TimoHav Hello, Timo. This is possible, if you don't mind editing it yourself. Go to directory /wfpiconsole/kvlang and open file rainfall.kv with a texteditor. Look for the line ## Time and date (I think #102https://github.com/peted-davis/WeatherFlow_PiConsole/issues/102) and place this:

Time and date

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Date'] + '[/color]'

pos_hint: {'x': 0/262, 'y': 24/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Time'] + '[/color]'

pos_hint: {'x': -45/262, 'y': 3/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.Status['tempest_voltage']+"V" + '[/color]'

pos_hint: {'x': 55/262, 'y': 3/202}

size_hint_x: (262/262)

If i'm right it will work and you see smaething like this:

[20231011_224118]https://user-images.githubusercontent.com/34476404/274416063-7c162bc9-be69-4445-b7db-c231e2b815db.jpg

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758526790, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQ7BZKSD6NCDQ2B46TX64BZ5ANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you were mentioned.Message ID: @.**@.>>

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758880745, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AIHBC5H5JNQM2PMBC3YF5ZTX65UQNANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you commented.Message ID: @.***>

TimoHav commented 11 months ago

And here with a picture of my display. Thank you again!

Best regards Timo Havulinna @.**@.> Tel. +358 400 704704

Lähettäjä: Pieter @.> Lähetetty: torstai 12. lokakuuta 2023 10.27 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Your welcome.

Verzonden vanaf mijn Galaxy

-------- Oorspronkelijk bericht -------- Van: TimoHav @.<mailto:@.>> Datum: 12-10-2023 06:09 (GMT+01:00) Aan: peted-davis/WeatherFlow_PiConsole @.<mailto:@.>> Cc: Pieter @.<mailto:@.>>, Comment @.<mailto:@.>> Onderwerp: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Hi! Thank you very much!

Best regards Timo

Lähettäjä: Pieter @.<mailto:@.>> Lähetetty: keskiviikko 11. lokakuuta 2023 23.57 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.<mailto:@.>> Kopio: Timo Havulinna @.<mailto:@.>>; Mention @.<mailto:@.>> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

@TimoHavhttps://github.com/TimoHav Hello, Timo. This is possible, if you don't mind editing it yourself. Go to directory /wfpiconsole/kvlang and open file rainfall.kv with a texteditor. Look for the line ## Time and date (I think #102https://github.com/peted-davis/WeatherFlow_PiConsole/issues/102) and place this:

Time and date

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Date'] + '[/color]'

pos_hint: {'x': 0/262, 'y': 24/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Time'] + '[/color]'

pos_hint: {'x': -45/262, 'y': 3/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.Status['tempest_voltage']+"V" + '[/color]'

pos_hint: {'x': 55/262, 'y': 3/202}

size_hint_x: (262/262)

If i'm right it will work and you see smaething like this:

[20231011_224118]https://user-images.githubusercontent.com/34476404/274416063-7c162bc9-be69-4445-b7db-c231e2b815db.jpg

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758526790, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQ7BZKSD6NCDQ2B46TX64BZ5ANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you were mentioned.Message ID: @.**@.mailto:***@***.******@***.***>>

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758880745, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AIHBC5H5JNQM2PMBC3YF5ZTX65UQNANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you commented.Message ID: @.<mailto:@.>>

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1759077966, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RSL5CQHZKA3Q2VXZ3DX66LURANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you were mentioned.Message ID: @.**@.>>

pjmpessers commented 11 months ago

@TimoHav I don't see anything. :-)

TimoHav commented 11 months ago

Hi! It was there as an attachment. But sometimes email software won't let them through. I will embed it in this email. Hope you see it now.

@.***

Best regards Timo

Lähettäjä: Pieter @.**@.>> Lähetetty: lauantai 14. lokakuuta 2023 18.04 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.**@.>> Kopio: Timo Havulinna @.**@.>>; Mention @.**@.>> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

@TimoHavhttps://github.com/TimoHav I don't see anything. :-)

- Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1762961429, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQD22XEJCS2W5A7YJTX7KSXLAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONRSHE3DCNBSHE. You are receiving this because you were mentioned.Message ID: @.**@.>>

pjmpessers commented 11 months ago

Hi! It was there as an attachment. But sometimes email software won't let them through. I will embed it in this email. Hope you see it now. @. Best regards Timo Lähettäjä: Pieter @*.**@*.>> Lähetetty: lauantai 14. lokakuuta 2023 18.04 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @*.**@*.>> Kopio: Timo Havulinna @*.**@*.>>; Mention @*.**@*.>> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117) @TimoHavhttps://github.com/TimoHav I don't see anything. :-) - Reply to this email directly, view it on GitHub<#117 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQD22XEJCS2W5A7YJTX7KSXLAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONRSHE3DCNBSHE. You are receiving this because you were mentioned.Message ID: @*.**@*.***>>

Still not. :-)

TimoHav commented 11 months ago

Very strange!! How about through this link? https://photos.app.goo.gl/spSdY5eA8FoVX4rb7

Best regards Timo Havulinna Tel +358 400 704704

On 15. lokakuuta 2023 14.55.44 Pieter @.***> wrote:

Hi! It was there as an attachment. But sometimes email software won't let them through. I will embed it in this email. Hope you see it now. @.*** Best regards Timo Lähettäjä: Pieter @.@.>> Lähetetty: lauantai 14. lokakuuta 2023 18.04 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.@.>> Kopio: Timo Havulinna @.@.>>; Mention @.@.>> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117https://github.com/peted-davis/WeatherFlow_PiConsole/issues/117) @TimoHavhttps://github.com/TimoHavhttps://github.com/TimoHav I don't see anything. :-) - Reply to this email directly, view it on GitHub<#117 (comment)https://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1762961429>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQD22XEJCS2W5A7YJTX7KSXLAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONRSHE3DCNBSHE. You are receiving this because you were mentioned.Message ID: @.@.>>

Still not. :-)

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1763366452, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RRS47WCL2QEHLYEXMTX7PFLVAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONRTGM3DMNBVGI. You are receiving this because you were mentioned.Message ID: @.***>

TimoHav commented 10 months ago

Hi Pete! I see that there is your update v23.10.1 available. You mentioned that in Facebook and now my devices also offer that on the screens. What if I update will I lose our own corrections/additions like the Battery Voltage on the screen and the Sun/Moon according to the Pull Request section?

Best regards Timo Havulinna @.**@.> Tel. +358 400 704704

Lähettäjä: Pieter @.> Lähetetty: torstai 12. lokakuuta 2023 10.27 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Your welcome.

Verzonden vanaf mijn Galaxy

-------- Oorspronkelijk bericht -------- Van: TimoHav @.<mailto:@.>> Datum: 12-10-2023 06:09 (GMT+01:00) Aan: peted-davis/WeatherFlow_PiConsole @.<mailto:@.>> Cc: Pieter @.<mailto:@.>>, Comment @.<mailto:@.>> Onderwerp: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Hi! Thank you very much!

Best regards Timo

Lähettäjä: Pieter @.<mailto:@.>> Lähetetty: keskiviikko 11. lokakuuta 2023 23.57 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.<mailto:@.>> Kopio: Timo Havulinna @.<mailto:@.>>; Mention @.<mailto:@.>> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

@TimoHavhttps://github.com/TimoHav Hello, Timo. This is possible, if you don't mind editing it yourself. Go to directory /wfpiconsole/kvlang and open file rainfall.kv with a texteditor. Look for the line ## Time and date (I think #102https://github.com/peted-davis/WeatherFlow_PiConsole/issues/102) and place this:

Time and date

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Date'] + '[/color]'

pos_hint: {'x': 0/262, 'y': 24/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.System['Time'] + '[/color]'

pos_hint: {'x': -45/262, 'y': 3/202}

size_hint_x: (262/262)

TimeDateField:

text: '[color=ffffffff]' + app.CurrentConditions.Status['tempest_voltage']+"V" + '[/color]'

pos_hint: {'x': 55/262, 'y': 3/202}

size_hint_x: (262/262)

If i'm right it will work and you see smaething like this:

[20231011_224118]https://user-images.githubusercontent.com/34476404/274416063-7c162bc9-be69-4445-b7db-c231e2b815db.jpg

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758526790, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RQ7BZKSD6NCDQ2B46TX64BZ5ANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you were mentioned.Message ID: @.**@.mailto:***@***.******@***.***>>

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1758880745, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AIHBC5H5JNQM2PMBC3YF5ZTX65UQNANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you commented.Message ID: @.<mailto:@.>>

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1759077966, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RSL5CQHZKA3Q2VXZ3DX66LURANCNFSM6AAAAAA4PLD4ZA. You are receiving this because you were mentioned.Message ID: @.**@.>>

peted-davis commented 10 months ago

Hi Timo, yes I would hold off updating at the moment. I had hoped to roll out a big fix for the sunrise and sunset issues you are seeing in this release, but I haven't quite got there yet. It will be in the next release!

As for the extra voltage, yes that will be overwritten unless you have made a custom panel that is stored in the user/ directory. Custom panels in that directory are not overwritten when an update is released

TimoHav commented 10 months ago

Ok thank you!

Best regards Timo

Lähettäjä: Pete Davis @.> Lähetetty: perjantai 27. lokakuuta 2023 15.34 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Hi Timo, yes I would hold off updating at the moment. I had hoped to roll out a big fix for the sunrise and sunset issues you are seeing in this release, but I haven't quite got there yet. It will be in the next release!

As for the extra voltage, yes that will be overwritten unless you have made a custom panel that is stored in the user/ directory. Custom panels in that directory are not overwritten when an update is released

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1782839597, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RSIHQI6L7TA7275WKLYBOS2BAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBSHAZTSNJZG4. You are receiving this because you were mentioned.Message ID: @.**@.>>

TimoHav commented 10 months ago

Hi Pete again! Is there a way to eliminate the pop-up on the screen saying that there is an update available? After I put it away it comes again (once a day?).

Best regards Timo Havulinna @.**@.> Tel. +358 400 704704

Lähettäjä: Pete Davis @.> Lähetetty: perjantai 27. lokakuuta 2023 15.34 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Hi Timo, yes I would hold off updating at the moment. I had hoped to roll out a big fix for the sunrise and sunset issues you are seeing in this release, but I haven't quite got there yet. It will be in the next release!

As for the extra voltage, yes that will be overwritten unless you have made a custom panel that is stored in the user/ directory. Custom panels in that directory are not overwritten when an update is released

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1782839597, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RSIHQI6L7TA7275WKLYBOS2BAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBSHAZTSNJZG4. You are receiving this because you were mentioned.Message ID: @.**@.>>

peted-davis commented 10 months ago

After I put it away it comes again (once a day?).

Yes, the console is scheduled to check for updates once a day. If you comment out line 206 of main.py (Clock.schedule_once(self.system.check_version)), you will never be prompted to update again

TimoHav commented 4 months ago

Hi Pete!

Have you already included this in your recent updates? I have halted the updates since October 2023

‘’Code to handle NeverUpError an AlwaysUpError, for Stations fare North and fare South’’

Best regards Timo

Lähettäjä: Timo Havulinna Lähetetty: perjantai 27. lokakuuta 2023 15.58 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.***> Aihe: VS: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Ok thank you!

Best regards Timo

Lähettäjä: Pete Davis @.**@.>> Lähetetty: perjantai 27. lokakuuta 2023 15.34 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.**@.>> Kopio: Timo Havulinna @.**@.>>; Mention @.**@.>> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Hi Timo, yes I would hold off updating at the moment. I had hoped to roll out a big fix for the sunrise and sunset issues you are seeing in this release, but I haven't quite got there yet. It will be in the next release!

As for the extra voltage, yes that will be overwritten unless you have made a custom panel that is stored in the user/ directory. Custom panels in that directory are not overwritten when an update is released

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-1782839597, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RSIHQI6L7TA7275WKLYBOS2BAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOBSHAZTSNJZG4. You are receiving this because you were mentioned.Message ID: @.**@.>>

peted-davis commented 4 months ago

Not yet - I'm sorry! I am close, but it still requires a bit more work.

I know it sounds like it should be an easy problem to fix, but unfortunately it has turned into a much more complex problem. When I wrote this part of the code, I always assumed that the sun would rise above the horizon before it set beneath the horizon every day. This is not the case, however, at high northern and southern latitudes. When the night is very short, and in locations where solar noon is not aligned with local noon, the sun can set before it rises. Rewriting the console to handle (rather than fudge) these situations has/is taking some time. I will get there though!

TimoHav commented 4 months ago

Hi Pete! No worries. So far everything has worked fine at least in Finland for us. We did the corrections last autumn according to these: https://github.com/peted-davis/WeatherFlow_PiConsole/pulls We are in the southern parts of Finland. Now up in the north 24 hour day has started and sun doesn’t set at all 😊

Best regards Timo

Lähettäjä: Pete Davis @.> Lähetetty: torstai 16. toukokuuta 2024 18.24 Vastaanottaja: peted-davis/WeatherFlow_PiConsole @.> Kopio: Timo Havulinna @.>; Mention @.> Aihe: Re: [peted-davis/WeatherFlow_PiConsole] Piconsole not starting (Issue #117)

Not yet - I'm sorry! I am close, but it still requires a bit more work.

I know it sounds like it should be an easy problem to fix, but unfortunately it has turned into a much more complex problem. When I wrote this part of the code, I always assumed that the sun would rise above the horizon before it set beneath the horizon every day. This is not the case, however, at high northern and southern latitudes. When the night is very short, and in locations where solar noon is not aligned with local noon, the sun can set before it rises. Rewriting the console to handle (rather than fudge) these situations has/is taking some time. I will get there though!

— Reply to this email directly, view it on GitHubhttps://github.com/peted-davis/WeatherFlow_PiConsole/issues/117#issuecomment-2115543530, or unsubscribehttps://github.com/notifications/unsubscribe-auth/BCNR6RS7UJQSEJLLY4D3TO3ZCTFSNAVCNFSM6AAAAAA4PLD4ZCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCMJVGU2DGNJTGA. You are receiving this because you were mentioned.Message ID: @.**@.>>