Update the LCD screen of the Reloop RP-8000 and Reloop RP-8000 MK2 DJ turntables. Currently only tempo/BPM is supported
from rp8000 import midi
rp = midi.SysEx('RP8000mk2')
rp.set_tempo(123.4)
# MK1 only - switch the display to BPM
rp.tempo_mode()
You must send a tempo to the turntable before you are able to select "bpm" mode for the display. The tempo is automatically set to '00.0' at object instantiation when the model is set to "RP8000"
You must send a startup sequence to the turntable before you are able to select "bpm" mode for the display. This happens automatically at object instantiation when the model is set to "RP8000mk2"
Shouts to Robert Hart for helping with the bitwise maths!