Smarthome Functionen
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

helpers.py 393B

12345678910111213141516171819
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. import config
  5. import geo
  6. import inspect
  7. import time
  8. def now():
  9. return time.mktime(time.localtime())
  10. def sunrise_time(time_offs_min=30):
  11. return time.mktime(geo.sun.sunrise(config.GEO_POSITION)) + time_offs_min * 60
  12. def sunset_time(time_offs_min=-30):
  13. return time.mktime(geo.sun.sunset(config.GEO_POSITION)) + time_offs_min * 60