보드에 따른 SoftwareSerial 가능 핀
보드 Chip 가능핀번호 우노 Uno ATmega328 모든 핀 가능 메가 Mega ATmega2560 10,11,12,13,14,15, 50,51,52,53, 62,63,64,65,66,67,68,69 레오나로드 ATmega32u4 8,9,10,11, 14,15,16
USB 호스트 쉴드 2.0, Arduino UNO MEGA
연결 가능 장치 HID장치 : 키보드, 마우스, 조이스틱 등 게임 컨트롤러 : 소니(Sony) PS3, 닌텐도 Wii, xbox360 USB - 시리얼 변환기 : FTDI, PL-2303, ACM 및 특정 휴대전화 디지털 카메라 : Canon EOS, Powershot, Nikon DSLR 및 P&S, PTP 대용량 저장 장치 : USB 스틱, 메모리 카드 판독기, 외장하드 드라이브 블루투스 동글. 라이브러리 다운로드
아두이노 Mega
통신 핀 Serial( UART ) RX TX Serial 0 1 Serial 1 19 18 Serial 2 17 16 Serial 3 15 14 I2C ( Wire.H ) 비교 Uno SDA 20 A4 SCL 21 A5 SPI ( SPI.H ) MOSI 51 11 MISO 50 12 SCK 52 13 SS 53 10 소프트시리얼 가능핀 10,11,12,13,14,15, 50,51,52,53, 62,63,64
배열 늘리기
Array.Resize( ref 배열이름 , 새로운 크기 ); using System; namespace ConsoleApp2 { internal class Program { public struct Font { public string s; public short[] f; } static void Main(string[] args) { Font[] font = new Font[1]; 방 1칸 font[0].s = "한"; font[0].f = new short[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; Array.Resize(ref font, 2); 방 2칸 Font f = new Font("국", new short[] { 0, 1, 2, 3 }); font[1] = f; Cons..