회원가입 ID/PW 찾기

1) 지식 창고는 본인이 작성한 콘텐츠(팁/노하우/리소스/강좌 등)을 무료 혹은 가상화폐인 납포인트를 통해 공유하는 공간입니다.
2) 본인이 작성한 콘텐츠에 대해서만 지식 창고에 등록할 수 있으며, 저작권에 위배되는 콘텐츠는 사전경고 없이 삭제될 수 있습니다.
3) 콘텐츠 구매 및 첨부파일 다운로드는 회원그룹 '연구원' 이상 가능하오니, 경험치를 쌓아 진급한 후에 이용 부탁드립니다.
4) 무료 콘텐츠의 본문은 구매절차 없이 즉시 이용할 수 있으며, 판매 납포인트가 있는 콘텐츠는 구매 후 이용할 수 있습니다.
5) 콘텐츠 판매에 따른 납포인트 수익은 지정한 비율(50%)에 따라 판매자에게 지급하며, 납포인트 수익을 통해 진급을 빨리할 수 있습니다.
6) 구매 후 평가를 하면 구매 납포인트의 20%를 돌려 드립니다.

콘텐츠 수 53

game port(midi port) 핀번호

Sensor 설계 구매수 0 2008.05.13 21:42:20
판매자 아크마 판매 납포인트 무료 평점 0점 / 총 0명 참여

Game ports use DB-15 connectors, and usually double as connectors for MIDI instruments. To use a game port with MIDI instruments, one had to obtain an unusual cable with both DB-15 and 5-pin DIN connectors (similar to old-style pre-PS/2 keyboard connectors known as Baby AT or AT5 connectors).

Pin Name Dir Description
1 +5V --> +5 VDC
2 /B1 <-- Button 1
3 X1 <-- Joystick 1 - X
4 GND --- Ground
5 GND --- Ground
6 Y1 <-- Joystick 1 - Y
7 /B2 <-- Button 2
8 +5V --> +5 VDC
9 +5V --> +5 VDC
10 /B4 <-- Button 4
11 X2 <-- Joystick 2 - X
12 MIDITXD --> MIDI Transmit
13 Y2 <-- Joystick 2 - Y
14 /B3 <-- Button 3
15 MIDIRXD <-- MIDI Receive

About MIDI Signals


How this document describe signals

MIDI Signals are like ASM instructions :
First a byte gives the instruction, if there is parameters, they follow the instruction byte using data bytes.

For exemple, "Note off event (Key, Velocity)" for channel 0 will be send as "Note off event" byte, then Key data byte, then Velocity data byte: "1000 0000 - 0kkk kkkk - 0vvv vvvv"
where kkkkkkk is the Key value and vvvvvvv is the Velocity value.
Data are always 7 bits, to allow the 0 beginning the data byte, when a parameter need more than 7 bits, it uses 2 data bytes, again like in ASM: LSB followed by MSB.

Bytes table

Type Command Byte
7 6 5 4 3 2 1 0
Data Data 0 Data
Channel Note off event 1000 Channel
Note on event 1001 Channel
Polyphonic key pressure 1010 Channel
Control change 1011 Channel
Program change 1100 Channel
Channel pressure 1101 Channel
Pitch wheel change 1110 Channel
System Exclusive System Exclusive Header 1111 0000
System Common (Undefined) 1111 0001
Measure Information 1111 0010
Song Select 1111 0011
(Undefined) 1111 0100
(Undefined) 1111 0101
Tune Request 1111 0110
System Exclusive System Exclusive End of block 1111 0111
System Real Time Timing Clock In Play 1111 1000
Measure End 1111 1001
Start From 1st Measure 1111 1010
Continue Start 1111 1011
Timing Clock In End 1111 1100
? 1111 1101
Active Sensing 1111 1110
System Reset System Reset 1111 1111

Channel Signals

The 4 highest bits of a channel status byte is the instruction, the 4 lowest ones is the channel number.

Note off event (key, velocity)
Note on event (key, velocity)
Polyphonic key pressure (key, after-touch)
Control change (command address, command value)
Program change (program number)
Channel pressure (after-touch)
Pitch wheel change (value lsb, value msb)

System Exclusive

These two instructions are used to send special instructions to a MIDI device, the instruction is made of a 2 bytes header, followed by data block(s) (as many as needed) and then finish by an end of block byte.

System Exclusive Header + Data (Identification code) + Data block(s) + System Exclusive End of block

System Real Time

Instructions for synchronisation and rythm boxes control, send for all channels.

Timing Clock In Play
This clock is send while the system is in "play" mode.
There are 24 clock impulsions for 1 black note.

Measure End
Replace the Timing Clock In Play signal at the end of every measure.

Start From 1st Measure
This signal is send when the master "play" key is pressed.
The first Timing Clock In Play must be send in the next 5ms following this signal.

Continue Start
This signal is send directly when the master "continue" key is pressed.
The next Timing Clock In Play must be send in the next 5ms following this signal.

Timing Clock In End
This signal is send when the master is in wait-mode and is used to lock a PLL during a pause.

Active Sensing
no information available.

System Common

Measure Information (measure number lsb, measure number msb)
Song Select (song number)
Tune Request

System Reset

System Reset
Restart the whole system.

Parameters

Channel
Channel number from 0 to 15.

Key
Key number from 0 to 127, the central A is always number 60.

Velocity
Velocity from 0 to 127 (0=Note off).
If the keyboard doesn"t have velocity, 64 is send as default.

After touch
After-touch from 0 to 127.

Command address
Address from 0 to 127.
Except for the "Pitch bender", which is 0, there is no specification for these.

Command value
For controllers, from 0 to 127.
For switches, 0=off, 127=on (other ore ignored).

Program number
Program number from 0 to 127.

Identification code
Society code from 0 to 127.

01 000 0001 Sequential Systems
40 100 0000 Kawai
41 100 0001 Roland
42 100 0010 Korg
43 100 0011 Yamaha

Measure number
Measure number in 14 bits.
The value is divided into 7 msb bits and 7 lsb bits to be able to send them as data blocks.

Note: Direction is Computer relative joystick.
Note: Use 100 kohm resistor.

모르는 것이 무엇인지 스스로 정리하고 질문하는 습관을 가집시다.
무성의/광범위하거나 직접 해보지 않고 올리는 질문은 서로를 피곤하게 합니다.
질문쪽지는 사절이오니 게시판에 글을 남겨주세요. 그래야 다같이 공유할 수 있으니까요.


profile
완소엔쵸 2015.05.03 23:13
어렵네요
profile
시나브로69 2016.12.26 19:00

좋은 자료에 감사드립니다.~~~

search
List of Articles
번호 분류 제목 평점 포인트 판매자 등록일 구매수 조회 수
공지 공공의 목적으로 공유하고자 하는 소프트웨어는 '소프트웨어 자료실'에 업로드를 요청드립니다.
공지 구매후 평점 댓글을 남겨주시면 구매포인트의 20%를 돌려드립니다.
53 드론/로봇/라인트레이서 로봇 [1] 무료 류진범 2015-04-28 0 169
51 드론/로봇/라인트레이서 Upgraded NAO [1] 무료 조나단 시걸 2012-02-14 0 1131
50 드론/로봇/라인트레이서 적외선 신호따라가는 4족로봇 [54] 무료 연서비 2010-10-06 0 6276
49 드론/로봇/라인트레이서 2008한국지능로봇경진대회 수상작 : 지적능력 은상 4족로봇 [28] 무료 연서비 2010-10-06 0 5085
48 드론/로봇/라인트레이서 움직임이 자연스러운 프랑스 휴머노이드 로봇 ' NAO' [20] 무료 조나단 시걸 2010-10-03 0 4981
47 드론/로봇/라인트레이서 춤추는 로봇 [20] 무료 나영운 2010-09-11 0 4983
46 드론/로봇/라인트레이서 Leg-Wheel Hybrid Walking Vehicle "Roller-Walker" [13] 무료 난나라구요 2010-06-17 0 4904
45 드론/로봇/라인트레이서 졸작으로 출품했던 로봇핸드입니다. [47] 무료 암흑혜성 2010-06-08 0 6701
44 드론/로봇/라인트레이서 과제 끝낼때쯤 작동영상입니다. [25] 무료 우가우가 2010-05-24 0 5578
43 드론/로봇/라인트레이서 다 조립하고 무게중심이랑 궤적 안맞아서 고생할때 입니다...ㅜㅠ [14] 무료 우가우가 2010-05-24 0 4995
42 드론/로봇/라인트레이서 두번째 흠 ~이건 짜다가 하도 이상하게 되어서 집에서 테스트겸 [4] 무료 우가우가 2010-05-24 0 4278
41 드론/로봇/라인트레이서 제가 예전에 프로젝트로한 6족 로봇입니다. [14] 무료 우가우가 2010-05-24 0 5067
40 드론/로봇/라인트레이서 블루투스 라인트레이서 개발 [9] 무료 AfroStyle 2010-04-09 0 3564
39 드론/로봇/라인트레이서 ASIMO 계단 오르내리는 동영상 [39] 무료 백감독 2010-03-07 0 6093
38 드론/로봇/라인트레이서 일본의 ASIMO running 동영상입니다. [30] 무료 백감독 2010-03-07 0 5981
37 드론/로봇/라인트레이서 DC모터 - 라인트렌서 [32] 무료 학주니 2010-02-18 0 6940
36 드론/로봇/라인트레이서 4족 로봇 - 화질이 좀~~2탄입니다 [11] 무료 학주니 2010-02-16 0 6082
35 드론/로봇/라인트레이서 4족 로봇 - 화질이 좀~~ [8] 무료 학주니 2010-02-16 0 5526
34 드론/로봇/라인트레이서 2족로봇 [50] 무료 스타트좋고 2009-11-22 0 7078
  • 남의 생활과 비교하지 말고 네 자신의 생활을 즐겨라.
    - 콩도르세
  • * 납포인트 정보 *
  • 글 작성 : 3
  • 댓글 작성 : 1
저작권법에 위배되는 콘텐츠는 등록 불가하며, 저작물에 대한 권리는 저작자에게 있습니다.
Copyright 2006-2021 © hardwareis.com, All rights reserved.