
180
Arduino Shield
와 통신하기
쉴드 부품 장착하기
자신만의 하드웨어 컨트롤러를 만들고자 할 경우
,
새로운 쉴드에 버튼과 노브
,
조이스틱을
장착하여 수동으로 직접 제어할 수 있습니다
.
커스텀 쉴드를
Blackmagic
3G-SDI
Arduino
Shield
의 헤더 슬롯에 간단히 장착하세요
.
원하는 모든 종류의 컨트롤러를 구축할 수 있습니다
.
오래된
CCU
의 회로를 자신만의 커스텀
Arduino
솔루션으로 교체하여 산업 표준 카메라 제어
장치로 사용할 수 있습니다
.
자신만의 하드웨어 컨트롤러를 구축하여
Blackmagic 3G-SDI
Arduino
Shield
에 장착하면 더 나은 상호 연동성을 가진 정확한
제어를 수행할 수 있습니다
.
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...