
68
Communication avec la carte Arduino
Fixation de composants
sur la carte extension
Si vous souhaitez créer votre propre contrôleur matériel, vous pouvez construire une nouvelle carte
extension dotée de boutons, de molettes et d’un joystick pour effectuer un contrôle plus précis.
Fixez simplement la carte extension personnalisée à la Blackmagic 3G-SDI Arduino Shield en
l'insérant dans les trous de la barrette. Vous pouvez ajouter le nombre de contrôleurs dont vous
avez besoin. Si vous le souhaitez, vous pouvez même remplacer le circuit électronique d'une
ancienne voie de commande par votre propre Arduino.
Créez votre propre contrôleur matériel et fixer-le à la Blackmagic
3G-SDI Arduino Shield pour un contrôle extrêmement précis.
Communication avec la carte Arduino
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;
Содержание Design 3G-SDI Arduino Shield
Страница 30: ...2017 11 Blackmagic 3G SDI Arduino Shield...
Страница 58: ...Manuel d utilisation et d installation novembre 2017 Fran ais Blackmagic 3G SDI Arduino Shield...
Страница 86: ...Installations und Bedienungsanleitung November 2017 Deutsch Blackmagic 3G SDI Arduino Shield...
Страница 114: ...112 Primeros pasos Manual de instalaci n y funcionamiento noviembre 2017 Espa ol Blackmagic 3G SDI Arduino Shield...
Страница 142: ...2017 11 Blackmagic 3G SDI Arduino Shield...
Страница 170: ...168 2017 11 Blackmagic 3G SDI Arduino Shield...
Страница 198: ...196 Blackmagic 3G SDI Arduino Shield 2017...
Страница 226: ...218 Operazioni preliminari Manuale di istruzioni novembre 2017 Italiano Blackmagic 3G SDI Arduino Shield...