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
low pin count and it frees up the serial monitor. This also allows you to use more I
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
Serial communication busses the shield supports.
I
C Interface
2
To use the I
C interface to the shield:
2
// NOTE: Must match address set in the setup utility software
const int
BMD_SDICameraControl_I2C
BMD_SDITallyControl_I2C
Serial Interface
To use the Serial interface to the shield:
BMD_SDICameraControl_Serial
BMD_SDITallyControl_Serial
C or Serial. We recommend I
2
shieldAddress = 0x6E;
sdiCameraControl(shieldAddress);
sdiTallyControl(shieldAddress);
sdiCameraControl;
sdiTallyControl;
C because of the
2
C devices with
2
2
Kommunizieren mit Ihrem Arduino Shield
C or
96