Skip to content
Advertisement

Cant wrap my head around Classes and Kivy

I am trying to use kivy.clock object more specifically Clock.schedule_interval to take temperature readings every couple seconds.

I create a method in my main screen class (MyTerrLayout(Screen)) called clockAction. now when I type in Clock.schedule_interval(clockAction, 2) I get:

JavaScript

So I tired to do self.clockAction but that didn’t work either. I tried various methods to get it going like moving Clock.schedule_interval(clockAction, 2) to its own class but I get other errors. Do i have to create an instance of the method clockAction? Or since Clock.schedule_interval(clockAction, 2) might be a class attribute it needs to be called a different way.

Or is it because Clock.schedule_interval(clockAction, 2) is a class attribute that I need to call clockAction a different way? I can’t seem to make the connection.

If someone could point me in the right direction that would be awesome. Also does anyone know where I can practice more complex examples of OOP and class manipulation? Or does someone have some old homework regarding class manipulation and OOP concepts?

Here is my code

JavaScript

Advertisement

Answer

The problem is here:

JavaScript

That code is in the class part of MyTerrLayout. In other languages, we call that static. clockAction has self as a parameter, which means it is not static.

In a static context, you can’t access members of an object, because there is no object to refer to.

IMHO this should be done when the object is created:

JavaScript

Note that the __init__ method has self and you can refer to self.clockAction.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement