Changes between Version 52 and Version 53 of Proposal


Ignore:
Timestamp:
Jul 10, 2013, 3:03:33 PM (11 years ago)
Author:
Frédéric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Proposal

    v52 v53  
    117117Note 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.
    118118
    119 In this method, we get the temperature and humidity values (not explained here), and give the value to the respective Datapoints.
     119In this method, we get the temperature and humidity values (not explained here), and give these values to the respective Datapoints.
    120120
    121121Then, we register our new Funtional Block (this will automatically instanciate it - and do other things):
     
    138138{{{
    139139#!python
    140 stack.serve()
     140stack.mainLoop()
    141141}}}
    142142