Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

timings.json 647B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "$id": "timings.json#",
  3. "$schema": "http://json-schema.org/draft-06/schema#",
  4. "required": [
  5. "send",
  6. "wait",
  7. "receive"
  8. ],
  9. "properties": {
  10. "dns": {
  11. "type": "number",
  12. "min": -1
  13. },
  14. "connect": {
  15. "type": "number",
  16. "min": -1
  17. },
  18. "blocked": {
  19. "type": "number",
  20. "min": -1
  21. },
  22. "send": {
  23. "type": "number",
  24. "min": -1
  25. },
  26. "wait": {
  27. "type": "number",
  28. "min": -1
  29. },
  30. "receive": {
  31. "type": "number",
  32. "min": -1
  33. },
  34. "ssl": {
  35. "type": "number",
  36. "min": -1
  37. },
  38. "comment": {
  39. "type": "string"
  40. }
  41. }
  42. }