Guest User

Untitled

a guest
May 6th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import array
  2.  
  3. key_color = array.array('i', [])
  4.  
  5. def main():
  6. key_set(KEY_COLOR_NONE, 0, 84)
  7. key_set(KEY_COLOR_NONE, 25, 61)
  8. key_set(KEY_COLOR_NONE, 13, 16)
  9.  
  10. def key_set(KEY_COLOR_STATE, counter, counter_max):
  11. for i in range(0, counter_max):
  12. key_color[i + counter] = KEY_COLOR_STATE
Advertisement
Add Comment
Please, Sign In to add comment