일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- stream
- aduino
- file access
- SERIAL
- parameter
- compare
- mfc
- digitalRead
- Unity
- memory
- java
- wpf
- atmega328
- Read
- Pointer
- Android
- preprocessing
- inheritance
- Encapusulation
- public
- Barcode
- APP
- sensor
- flutter
- Class
- Contour
- Overloading
- Binary
- length
- UNO
- Today
- Total
목록upload (3)
폴크(FOLC)
PC 환경(Windows10, Windows10pro)에서 Arduino 개발 환경(IDE)을 구성하기 # Arduino IDE 검색한다. > Software | Arduino 선택 #. 아두이노 IDE 설치 > Windows Win 7 and newer 선택 > 다른 버전을 선택하기 위해서는 Previous Releases 에서 찾아서 선택 # 여기서는, 기존 배포된 버전을 선택하여 진행하였다. > Previous Release 1.8.18 선택 # 각 OS 에 맞는 버전을 선택한다. Windows 에서 환경을 구성하고자 Windows Installer 나 Windows ZIP file for non admin install 중에 선택 > 설치 없이 진행하고자 Windows ZIP file for no..
# FTP : File Transfer Protocol은 TCP/IP 프로토콜을 가지고 있어서 서버(HOST)와 모듈(CLIENT) 사이의 파일 송/수신 > TCP/IP 프로토콜 테이블의 응용 계층 > 운영 체제가 그래픽 사용자 인터페이스를 갖추기 이전에 개발된 명령 줄 프로그램 > 대부분의 윈도우, 유닉스, 리눅스 운영 체제에 기본 포함되어 있다. # 소스 코드 public bool FileDownload(string src_path, string dst_path, string user_id, string user_pw) { try { Uri src_file_uri = new Uri(src_path); FtpWebRequest ftpWebReq = WebRequest.Create(src_file_uri..
# FTP : File Transfer Protocol은 TCP/IP 프로토콜을 가지고 있어서 서버(HOST)와 모듈(CLIENT) 사이의 파일 송/수신 > TCP/IP 프로토콜 테이블의 응용 계층 > 운영 체제가 그래픽 사용자 인터페이스를 갖추기 이전에 개발된 명령 줄 프로그램 > 대부분의 윈도우, 유닉스, 리눅스 운영 체제에 기본 포함되어 있다. # 소스 코드 public bool FileUpload(string src_path, string dst_path, string user_id, string user_pw) { try { Uri dst_file_uri = new Uri(dst_path); FtpWebRequest ftpWebReq = WebRequest.Create(dst_file_uri) ..