🔥 Lifetime deal! Get Control Surface Studio for Just £67 👉 Click Here To Get It
Time left... mailtimers.com
⚠️ Lifetime licenses are ending soon, get yours before they're gone ⚠️
Your shopping cart is empty.

adding time display

Submitted by benwadub on Wed, 10/21/2020 - 22:41
benwadub
Control Surface Studio User

hi i d like to add the time display to my script to show it on the screen of my controller, I know how to print it on the screen, I already managed to do it for mut, solo, play and mec icon but I really don t know how to use python, here is the Mackie control script for the time display
```cpp
#Embedded file name: /Users/versonator/Jenkins/live/output/Live/mac_64_static/Release/python-bundle/MIDI Remote Scripts/MackieControl/TimeDisplay.py
from __future__ import absolute_import, print_function, unicode_literals
from .MackieControlComponent import *

class TimeDisplay(MackieControlComponent):
u"""Represents the Mackie Controls Time-Display, plus the two LED's that show the"""

def __init__(self, main_script):
MackieControlComponent.__init__(self, main_script)
self.__main_script = main_script
self.__show_beat_time = False
self.__smpt_format = Live.Song.TimeFormat.smpte_25
self.__last_send_time = []
self.show_beats()

def destroy(self):
self.clear_display()
MackieControlComponent.destroy(self)

def show_beats(self):
self.__show_beat_time = True
self.send_midi((NOTE_ON_STATUS, SELECT_BEATS_NOTE, BUTTON_STATE_ON))
self.send_midi((NOTE_ON_STATUS, SELECT_SMPTE_NOTE, BUTTON_STATE_OFF))

def show_smpte(self, smpte_mode):
self.__show_beat_time = False
self.__smpt_format = smpte_mode
self.send_midi((NOTE_ON_STATUS, SELECT_BEATS_NOTE, BUTTON_STATE_OFF))
self.send_midi((NOTE_ON_STATUS, SELECT_SMPTE_NOTE, BUTTON_STATE_ON))

def toggle_mode(self):
if self.__show_beat_time:
self.show_smpte(self.__smpt_format)
else:
self.show_beats()

def clear_display(self):
time_string = [ u' ' for i in range(10) ]
self.__send_time_string(time_string, show_points=False)
self.send_midi((NOTE_ON_STATUS, SELECT_BEATS_NOTE, BUTTON_STATE_OFF))
self.send_midi((NOTE_ON_STATUS, SELECT_SMPTE_NOTE, BUTTON_STATE_OFF))

def refresh_state(self):
self.show_beats()
self.__last_send_time = []

def on_update_display_timer(self):
u"""Called by a timer which gets called every 100 ms. We will simply check if the"""
if self.__show_beat_time:
time_string = str(self.song().get_current_beats_song_time())
else:
time_string = str(self.song().get_current_smpte_song_time(self.__smpt_format))
time_string = [ c for c in time_string if c not in (u'.', u':') ]
if self.__last_send_time != time_string:
self.__last_send_time = time_string
self.__send_time_string(time_string, show_points=True)

def __send_time_string(self, time_string, show_points):
assert len(time_string) >= 10
for c in range(0, 10):
char = time_string[9 - c].upper()
char_code = g7_seg_led_conv_table[char]
if show_points and c in (3, 5, 7):
char_code += 64
self.send_midi((176, 64 + c, char_code))
```
could you help me adding it to my script please I just need to send the information from Ableton to my Arduino, I know how to catch it in my code
i upload my json file

upload files: 
Topic Category: 

0 Responses