S&B Volcano vaporizer remote control with Pi Pico W
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

workflows.py 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #!/usr/bin/env python
  2. workflows = [
  3. {
  4. "name": "Default",
  5. "author": "xythobuz",
  6. "steps": [
  7. (185.0, 15.0, 5.0),
  8. (195.0, 10.0, 20.0),
  9. (205.0, 10.0, 20.0),
  10. ],
  11. "notify": (4, 1.0),
  12. "reset_temperature": 190.0,
  13. },
  14. {
  15. "name": "Relaxo",
  16. "author": "xythobuz",
  17. "steps": [
  18. (175.0, 15.0, 5.0),
  19. (185.0, 10.0, 20.0),
  20. (195.0, 10.0, 20.0),
  21. ],
  22. "notify": (4, 1.0),
  23. "reset_temperature": 190.0,
  24. },
  25. {
  26. "name": "Hardcore",
  27. "author": "xythobuz",
  28. "steps": [
  29. (190.0, 15.0, 5.0),
  30. (205.0, 10.0, 20.0),
  31. (220.0, 10.0, 20.0),
  32. ],
  33. "notify": (4, 1.0),
  34. "reset_temperature": 190.0,
  35. },
  36. {
  37. "name": "Vorbi",
  38. "author": "Rinor",
  39. "steps": [
  40. (176.0, 10.0, 6.0),
  41. (187.0, 5.0, 10.0),
  42. (204.0, 3.0, 10.0),
  43. (217.0, 5.0, 10.0),
  44. ],
  45. "notify": None,
  46. "reset_temperature": None,
  47. },
  48. ]