Changes between Version 52 and Version 53 of Proposal
- Timestamp:
- Jul 10, 2013, 3:03:33 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Proposal
v52 v53 117 117 Note how this method is periodically called, using the {{{schedule.every()}}} method as python decorator. This decorator will automatically register our method and call it every 5 minutes. 118 118 119 In this method, we get the temperature and humidity values (not explained here), and give the valueto the respective Datapoints.119 In this method, we get the temperature and humidity values (not explained here), and give these values to the respective Datapoints. 120 120 121 121 Then, we register our new Funtional Block (this will automatically instanciate it - and do other things): … … 138 138 {{{ 139 139 #!python 140 stack. serve()140 stack.mainLoop() 141 141 }}} 142 142