The Instant View Editor uses a three-column layout, so you really want to use it on a desktop screen that's wide enough. Sorry for the inconvenience.

Back to the main page »

Original

Preview

Link Preview
라떼판다 32GB + LED PWM
<본 체험제품은 No1. 전자부품 전문 쇼핑몰 아이씨뱅큐 의 지원을 받아 작성한 것입니다.> LED PWM (1) 회로 LED 설치 (2)Arduino실행 File->Examples ->Fimata -> StandardFimata 업로드 하였습니다. (3) Visual Studio 2015 를 실행 하였습니다. (4) file ->New -> Project -> Visual c# ->Console Application 선택 -> 내임 :led ->OK http://www.lattepanda.com/docs/#BlinkyourBoard ***(5)프로그램을 복사 붙여넣기합니다*** ---------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; using LattePanda.Firmata; namespace analogWriteExample { class Program { static Arduino arduino = new Arduino();//create an instance and initialize with the default parameters static void Main(string[] args) { arduino.pinMode(11, Arduino.PWM); while (true) { for (int i = 0; i <= 255; i++) { arduino.analogWrite(11, i); Thread.Sleep(4);//delay 4ms } for (int i = 255; i >= 0; i--) { arduino.analogWrite(11, i); Thread.Sleep(4);//delay 4ms } } } } } ---------------------------------------------------------------------------- (6) Arduino Library 파일을 다운받아 압축을 풉니다. (압축파일 135KB 확인했습니다.) LattePanda-Development-Support/LattePandaFirmata/ https://github.com/LattePandaTeam/LattePanda-Development-Support (7)아래와 같이 솔루션탐색기의 제목줄을 클릭합니다. (아래와 똑같이 파란색 으로되었습니다.) (8) Program.cs 밑 하얀부분에 마우스 를 갖다대고 마우스 오른쪽 버튼을 누렀습니다. (9) 추가( Add ) -> 기존항목( Existing item)을 클릭합니다. (10) Arduino.cs를 클릭하면 아래와 같이 추가 되었습니다. (11) 시작버튼을 클릭합니다. ------------------------------------------------------------------------------------------------ 더욱더 노력해서 더좋은 모습 보여드리겠습니다.

Issue #1

formatting is broken. My template handles this however
PS: the website is a mess
Accepted by admin
The formatting is broken indeed.
Type of issue
IV page is missing essential content
Reported
Jun 14, 2017