Page 1 of 1

Suche Steuer(Sende)Befehl für Titel,Timecode > Serial

Posted: 12 Jan 2015 17:53
by SevenSenses
Hallo Bernd da ich derzeit versuche zwei Externe Displays (LED) für mein Studio mit einzubinden habe ich eine Frage.
Es soll auf Display 1 der Titel sowie die Zeit von Player.1 angezeigt werden,das gleiche auf einen anderen Display für Player.2

Da ich schon erfolgreich über einen Serial (selbst programmierten) Chip (Andurio) mein LED Band ansteuern (Farbe usw.) kann wäre das die nächste Stufe :-)

Nur leider weiß ich nicht, bzw. finde ich nicht das Kommando mit dem Proppfrexx (ich hoffe es kann es) diese Daten auf das Interface (Serial) sendet.

Ich hoffe du kannst mir weiterhelfen.

MFG Thomas aus Wien

Re: Suche Steuersignal für Titel,Timecode > Serial

Posted: 12 Jan 2015 18:12
by radio42
In order to send Data to a serial interface you must first enable the serial interface in the General Settings, section 'GPIO/Remoting', group 'Serial I/O Devices'!
a) Check 'Serial Control Enable'
b) Select the COM port in the 'Output' combo box
c) click on the properties button next to it and define the serial settings (baud rate, data bits, parity etc.)

Once the above is done, you can then use one of the following control-commands to send data to the serial device:
1) EXEC_SEND_SERIAL_WRITE string-data
2) EXEC_SEND_SERIAL_WRITEBIN bin-data
3) EXEC_SEND_SERIAL_WRITE2 parameter|criterion|truecontent|falsecontent

The 1) command sends plan ASCII text data to the device.

The 2) command supports writing binary data, e.g. using the form 0x7F 160 "This is a text" 0x00 0x7F
(here each byte is separated by a space; hex values are prefixed by 0x; string values are encapsulated in quotes)

Re: Suche Steuer(Sende)Befehl für Titel,Timecode > Serial

Posted: 12 Jan 2015 18:42
by SevenSenses
Danke Bernd für deine schnelle Antwort!!

Also das Serial ist so schon konfiguriert.

EXEC_SEND_SERIAL_WRITE verwende ich für die LED Steuerung.

Nur wie würde so ein Befehl aussehen wenn ich denn Titel (und) bzw. denn Timecode
an das Serial Sende für (Player.1) sowie für (Player.2).
Also das Proppfrexx dem Serial es weitergibt.(Auswertet)....die command syntax??

Ich hoffe du verstehst was ich meine.

LG Thomas aus Wien

Re: Suche Steuer(Sende)Befehl für Titel,Timecode > Serial

Posted: 12 Jan 2015 21:05
by radio42
No, I do not know what you mean.
You are saying, that you are using a self-programmed Andurio Chip ?!
I have no clue what the serial bytes (syntax) is to send to that device in order to display the title.
But...
...you can use the following macros within your control-command (which are then replaced by the effective content) to e.g. display the title or artist:
${title}
${artist}
etc.
See the user manual appendix for a full list of track related macros.

To display the timecode use the global Playlist.OnTimecode event with one of the following macros:
${cpltimecode} : to display the general timecode
${cplremainseca} : remaining seconds player A
${cplremainsecb}: remaining seconds player B
...

Re: Suche Steuer(Sende)Befehl für Titel,Timecode > Serial

Posted: 13 Jan 2015 06:04
by SevenSenses
Danke Bernd für die Infos ich glaube das ist genau was ich wollte. ;)
Ich hoffe nur das funktioniert auch mit denn Titeln und Interpreten pro Player A-D.
Mir war nur wichtig ob es funktioniert diese Infos zu senden.
Denn Rest schau ich mir dann an bzw. wie es über das Serial reinkommt.

Danke nochmals:-)