
96
Kommunizieren mit Ihrem Arduino Shield
Anbringen von Shield-Komponenten
Wenn Sie Ihren eigenen Hardware-Controller bauen möchten, können Sie für eine greifbarere
und praktischere Handhabung ein neues Shield mit Tasten, Reglern und einem Joystick kreieren.
Montieren Sie Ihr eigens angefertigtes Shield einfach auf Ihrem Blackmagic 3G-SDI Arduino
Shield, indem Sie es auf die dafür vorgesehenen Leisten Ihres Shields aufstecken. Den Arten
von Steuerelementen, die Sie bauen können, sind keine Grenzen gesetzt. Es lässt sich sogar der
Schaltkreis einer alten CCU durch Ihre selbst zusammengestellte Arduino-Lösung austauschen.
Und schon haben Sie eine Kamerasteuerungseinheit nach Industriestandard.
Sie können Ihren eigenen Hardware-Controller kreieren und
diesen für eine noch interaktivere und präzisere Steuerung auf
Ihrem Blackmagic 3G-SDI Arduino Shield montieren
Kommunizieren mit Ihrem Arduino Shield
You can communicate with your Arduino Shield via I
2
C or Serial. We recommend I
2
C because of the
low pin count and it frees up the serial monitor. This also allows you to use more I
2
C devices with
the shield.
High Level Overview
The library provides two core objects, BMD_SDITallyControl and BMD_SDICameraControl, which
can be used to interface with the shield’s tally and camera control functionalities. Either or both of
these objects can be created in your sketch to issue camera control commands, or read and write
tally data respectively. These objects exist in several variants, one for each of the physical I
2
C or
Serial communication busses the shield supports.
I
2
C Interface
To use the I
2
C interface to the shield:
// NOTE: Must match address set in the setup utility software
const int
shieldAddress = 0x6E;
BMD_SDICameraControl_I2C
sdiCameraControl(shieldAddress);
BMD_SDITallyControl_I2C
sdiTallyControl(shieldAddress);
Serial Interface
To use the Serial interface to the shield:
BMD_SDICameraControl_Serial
sdiCameraControl;
BMD_SDITallyControl_Serial
sdiTallyControl;
Summary of Contents for Design 3G-SDI Arduino Shield
Page 30: ...2017 11 Blackmagic 3G SDI Arduino Shield...
Page 58: ...Manuel d utilisation et d installation novembre 2017 Fran ais Blackmagic 3G SDI Arduino Shield...
Page 86: ...Installations und Bedienungsanleitung November 2017 Deutsch Blackmagic 3G SDI Arduino Shield...
Page 142: ...2017 11 Blackmagic 3G SDI Arduino Shield...
Page 170: ...168 2017 11 Blackmagic 3G SDI Arduino Shield...