frame time unit is 6 ms
Stefan Schuermans

Stefan Schuermans commited on 2019-06-22 21:14:03
Showing 1 changed files, with 1 additions and 1 deletions.

... ...
@@ -52,7 +52,7 @@ class Movie(object):
52 52
             return self.duration, data
53 53
 
54 54
         def to_firmware_data(self):
55
-            duration = (self.duration + 5) // 10
55
+            duration = (self.duration + 3) // 6
56 56
             if duration < 1:
57 57
                 duration = 1
58 58
             if duration > 255:
59 59