feedback.py 360 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from enum import Enum
  3. class FeedbackValue(str, Enum):
  4. null = 'null'
  5. a_little_cold = '1'
  6. so_cold = '2'
  7. a_little_hot = '3'
  8. so_hot = '4'
  9. noisy_or_blowy = '5'
  10. so_stuffy = '6'
  11. more_sunshine = '7'
  12. less_sunshine = '8'
  13. send_a_repairman = '9'
  14. switch_off = '10'
  15. nice = '11'
  16. switch_on = '12'