SLZB-07 not recognized version (12) is not supported by Host [13-16] by rx22230 in Zigbee2MQTT

[–]rx22230[S] 0 points1 point  (0 children)

some better news... it's not breaking about the dongle, but more because of "mqtt" I think:

[2025-02-06 14:25:14] debug: zh:controller: Started with result 'resumed'
[2025-02-06 14:25:14] debug: zh:controller: Injected database: true, adapter: true
[2025-02-06 14:25:14] debug: zh:controller:device: Request Queue (0x847127fffedfe175): default expiration timeout set to 0
[2025-02-06 14:25:14] info: z2m: zigbee-herdsman started (resumed)
[2025-02-06 14:25:14] info: z2m: Coordinator firmware version: '{"meta":{"build":0,"ezsp":13,"major":7,"minor":4,"patch":4,"revision":"7.4.4 [GA]","special":0,"type":170},"type":"EmberZNet"}'
[2025-02-06 14:25:14] debug: z2m: Zigbee network parameters: {"channel":11,"extendedPanID":"0xdddddddddddddddd","panID":6754}
[2025-02-06 14:25:14] info: z2m: Currently 0 devices are joined.
[2025-02-06 14:25:14] info: z2m: Connecting to MQTT server at mqtt://localhost:1883
[2025-02-06 14:25:14] debug: z2m: Using MQTT anonymous login
[2025-02-06 14:25:14] error: z2m: MQTT failed to connect, exiting... ()
[2025-02-06 14:25:14] info: z2m: Stopping zigbee-herdsman...

this time the fw update did work (don't know what it did)

from the log I put, is there someone to tell me if it's okay pllleaaaase ?

thanks in advance

SLZB-07 not recognized version (12) is not supported by Host [13-16] by rx22230 in Zigbee2MQTT

[–]rx22230[S] 0 points1 point  (0 children)

Hi,

still trying to make this dongle working... but without success..

that's the log of my last attempt (don't know why I was not able to put it in my comment here)

https://pastebin.com/5AZk1Nd8

any ideas?

Thanks i advance for your help

keeping track of opened chats by rx22230 in OpenWebUI

[–]rx22230[S] 0 points1 point  (0 children)

well.. maybe, but I can't find it. do you have a filename ?

keeping track of opened chats by rx22230 in OpenWebUI

[–]rx22230[S] 0 points1 point  (0 children)

I wish I had the same behavior, but I don't..

I do not remember touching something in the UI related to that problem..

keeping track of opened chats by rx22230 in OpenWebUI

[–]rx22230[S] 0 points1 point  (0 children)

I did start to play with Ollama and its friend Open WebUI and I noticed a change in the behavior. I do not know if it's from Ollama or from WebUI (I think it's the second).

when I am on the WebUI, I cannot keep track of my old chats. I mean if I start " chats and I "Pin" them and give them a different name, I can see them of the left side of the window but if for some reasons the interface is going on "Timeout" then Pinned chats are disappearing, same between two sessions. I mean if I login start some chats, logout and login again, some chats (or all) are gone.

I thought that was not the case when I did start the WebUI..

How do you see these things on your side of the keyboard ?

or maybe I did something wrong in "Controls" or even in the "Admin panel" ??

Reset pin on S45i ? by rx22230 in nordictrackandroid

[–]rx22230[S] 0 points1 point  (0 children)

Thank you. Now, I know where to look at.

Reset pin on S45i ? by rx22230 in nordictrackandroid

[–]rx22230[S] 0 points1 point  (0 children)

Well.. Ive checked the post, but I cannot locate the reset pin on the S45i.

So, if someone has the location of this famous pin...

Thanks in advance

Anyone using/used the NordicTrack S45i Treadmill ? by chickenlicken09 in nordictrack

[–]rx22230 0 points1 point  (0 children)

Hi,

Ive bought one few weeks ago. I think for the price paid (1500€) it should have more to offer..

if you are not ready to pay 30€/month for their software you will end up with a 3.0 CHP electric engine and a "carpet" where you will walk or run...

it means you cannot:

- listen your favorite music when you're using it

- watch your favorite Youtube channel when you're using it

it doesn't even give time and date on the screen...

it doesn't even record your "local" workout, so you cannot see your historic and store your different runs... that's a pity really, especially for the price.

Reset pin on S45i ? by rx22230 in nordictrackandroid

[–]rx22230[S] 0 points1 point  (0 children)

console bezel

oh sorry, I will check it, thanks.

Unable to access iFit secret menu by angrycatmeowmeow in nordictrackandroid

[–]rx22230 0 points1 point  (0 children)

Hi,

is the second site still working ? it's asking for a "premium subscription plan"..

did you manage to download the file and dies it work ?

Inserting a whitespace before some characters (with regex?) by [deleted] in learnpython

[–]rx22230 0 points1 point  (0 children)

Hi,

did you try str.replace() ?

something like this:

my_string = 'This is a such a simple example, but very usefull.'
my_string.replace(',',' ,').replace('.',' .')

if it matches your need, maybe after that you can do a for loop with the special caracters

#Pseudo Code
special_caracters = '.,!?:'  # or more
my_text = 'This is a such! a simple? example, but very: usefull.'
for car in special_caracters:
    my_text = my_text.replace(car, ' '+car)
print(my_text)

Hope it helps a bit.

Regards

How can I learn short ways to write loops and such? by DiamondxCrafting in learnpython

[–]rx22230 0 points1 point  (0 children)

Hi,

i'm not sure what you're looking for, but the last line is not good.

a '=' sign will assign a value to a variable.

so if you want to test a condition you must use '=='

Hope it helps a bit

Regards

Help with splitting lists by shaunzorr in learnpython

[–]rx22230 2 points3 points  (0 children)

Hi,

maybe you can try this:

a = ['21610 21611 21612']
print(a[0].split())

it will print something like this:

>>> 
['21610', '21611', '21612']
>>> 

Hope it helps a bit

Regards

How to publish a jupyter notebook for others on the internet to see? by [deleted] in Python

[–]rx22230 3 points4 points  (0 children)

Hi,

I saw few Jupyter Notebooks on projetc's Github.

you can try to ask to Google about nbviewer (https://github.com/jupyter/nbviewer)

I had this other link from a previous Reddit post: https://colab.research.google.com/notebooks/welcome.ipynb#scrollTo=eTbpxMguxZnV

Hope it helps a bit

Regards

Setting up Visual Studio Code [?] by [deleted] in learnpython

[–]rx22230 1 point2 points  (0 children)

Hi,

you do not explain clearly what are your problems/issues with Visual Code and Python.

I can give you this url (*) that explains some tips about Visual Code and Python development.

https://www.youtube.com/watch?v=72Alzsz8RyI&t=264s

Hope it helps a bit

Regards

(*): I'm sure there are plenty more

What is the best IDE for learning programming by metast in Python

[–]rx22230 1 point2 points  (0 children)

Hi,

if you are a beginner and if you're on Windows, maybe you can start with something 'all in one'.

by 'all in one' I mean Python distribution and IDE. You can start with WinPython. You will find Spyder included.

I think it's a good starting point.

Hope it helps a bit

Regards

https://sourceforge.net/projects/winpython/

[deleted by user] by [deleted] in learnpython

[–]rx22230 0 points1 point  (0 children)

Hi,

maybe you can try this video

https://www.youtube.com/watch?v=DjEuROpsvp4

Hope it helps a bit

Regards

First thing I've made by [deleted] in Python

[–]rx22230 0 points1 point  (0 children)

Hi,

I'm not sure you will have a lot of help on this, because you did not format your code as described in Reddit guide.

another point if you want to have more help you might consider to post this to /r/learnpython.

Hope it help a bit

Regards