Browse Source

tweak pc python workflows

Thomas Buck 2 months ago
parent
commit
404216198d
2 changed files with 6 additions and 6 deletions
  1. 3
    3
      test_bleak/flow.py
  2. 3
    3
      test_simplepyble/flow.py

+ 3
- 3
test_bleak/flow.py View File

@@ -62,9 +62,9 @@ async def flow(client):
62 62
     print("Turning on heater")
63 63
     await set_state(client, (True, False))
64 64
 
65
-    await flow_step(client, 185.0, 10.0, 5.0)
66
-    await flow_step(client, 195.0, 5.0, 20.0)
67
-    await flow_step(client, 205.0, 5.0, 20.0)
65
+    await flow_step(client, 185.0, 10.0, 7.0)
66
+    await flow_step(client, 195.0, 5.0, 23.0)
67
+    await flow_step(client, 205.0, 5.0, 23.0)
68 68
 
69 69
     print("Notification by pumping three times...")
70 70
     for i in range(0, 3):

+ 3
- 3
test_simplepyble/flow.py View File

@@ -63,9 +63,9 @@ def flow(client):
63 63
     print("Turning on heater")
64 64
     set_state(client, (True, False))
65 65
 
66
-    flow_step(client, 185.0, 10.0, 5.0)
67
-    flow_step(client, 195.0, 5.0, 20.0)
68
-    flow_step(client, 205.0, 5.0, 20.0)
66
+    flow_step(client, 185.0, 10.0, 7.0)
67
+    flow_step(client, 195.0, 5.0, 23.0)
68
+    flow_step(client, 205.0, 5.0, 23.0)
69 69
 
70 70
     print("Notification by pumping three times...")
71 71
     for i in range(0, 3):

Loading…
Cancel
Save