일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- opencv resize
- ubuntu
- libopencv-dev
- opencv
- 정보처리기사후기
- translation
- vtk
- vim
- google drive 업로드
- 정보처리기사
- Winform
- 아두이노 설치
- vi
- 아두이노
- apt update
- sshkey
- opengl
- 우분투 opencv 설치
- Google Drive API
- google drive upload
- Python
- annotating
- api사용해서 google drive에 폴더만들기
- 고정ip할당
- c#
- vim명령어
- esp32
- rotation
- NodeMCU
- opencv apt설치
- Today
- Total
목록분류 전체보기 (74)
내가 보려고 만든 블로그
#include #include namespace { // DS1302와 연결되는 아두이노 핀 번호 const int kCePin = 8; // Chip Enable const int kIoPin = 7; // Input/Output const int kSclkPin = 6; // Serial Clock // DS1302 오브젝트 생성 DS1302 rtc(kCePin, kIoPin, kSclkPin); // 요일 코드에 알맞는 문자열 출력 String dayAsString(const Time::Day day) { switch (day) { case Time::kSunday: return "Sunday"; case Time::kMonday: return "Monday"; case Time::kTuesday..
playground.arduino.cc/Code/Keypad/ Arduino Playground - Keypad Library #include const byte ROWS = 4; //four rows const byte COLS = 3; //three columns char keys[ROWS][COLS] = { {'1','2','3'}, {'4','5','6'}, {'7','8','9'}, {'#','0','*'} }; byte rowPins[ROWS] = {5, 4, 3, 2}; //connect to the row pinouts of the keypad playground.arduino.cc 에서 keypad.zip 다운 #include const byte ROWS = 4; // 행(rows) 개수..
int redPin = 13; int greenPin = 12; int bluePin = 11; void setup() { pinMode(redPin, OUTPUT); pinMode(greenPin, OUTPUT); pinMode(bluePin, OUTPUT); } void loop() { setColor(1, 0, 0); // 빨강 setColor(0, 1, 0); // 녹색 setColor(0, 0, 1); // 파랑 setColor(1, 1, 0); // 노랑 setColor(1, 0, 1); // 자홍 setColor(0, 1, 1); // 청록 setColor(1, 1, 1); // 흰색 } void setColor(int red, int green, int blue) { digitalWrite..
시리얼9600이 기본으로 되어있는데 115200으로 고쳐야 됨.. 안되면 이렇게 고쳐서 해보기 https://www.kocoafab.cc/data/oss/libraries/DHT11.zip 라이브러리 설치해야 됨.. 아두이노 > 파일 > 예제 > DHT11 > dht11_read #include int pin=4; DHT11 dht11(pin); void setup() { Serial.begin(115200); while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } } void loop() { int err; float temp, humi; if((err=dht11.read(humi, temp))==0) { Se..
#include // i2C 통신을 위한 라이브러리 #include // LCD 1602 I2C용 라이브러리 LiquidCrystal_I2C lcd(0x27,16,2); // 접근주소: 0x3F or 0x27 void setup() { lcd.init(); // LCD 초기화 // Print a message to the LCD. lcd.backlight(); // 백라이트 켜기 lcd.setCursor(0,0); // 1번째, 1라인 lcd.print("Hello, world!"); lcd.setCursor(0,1); // 1번째, 2라인 lcd.print("Enjoy - aduino"); } void loop() { } 왜 그런지 주소값 0x3F하니깐 안뜨네..;; 0x27하면 뜸
ULN2003 스텝모터는 빵판에 5.5넣고 이러지말고 바로 전기연결해야 된다 안그러니깐 안움직임..;; int1부터 5까지 8,9,10,11차례로 연결하고 5.5v연결 gnd연결하고 소스 넣으면 돈다. /* 라즈이노 IOT #35 스텝모터 구동하기(28BYJ-48 & ULN2003 모듈) * */ #include int stepsPerRev = 2048; // 한바퀴(360): 2048 , 반 바퀴(180) : 1024 Stepper stepper (stepsPerRev, 11,9,10,8); // ( IN4,IN2,IN3,IN1) void setup() { Serial.begin(9600); stepper.setSpeed(5); // 스텝모터의 스피드 설정 } void loop() { stepper.s..
아두이노 적외선 리모콘 테스트 해봄 파일>예제>IRremote>IRrecvDemo 코드 https://github.com/z3t0/Arduino-IRremote z3t0/Arduino-IRremote Infrared remote library for Arduino: send and receive infrared signals with multiple protocols - z3t0/Arduino-IRremote github.com 에서 라이브러리를 zip파일로 다운받는다. 다운 받은 라이브러리 파일을 아두이노에 추가한다.. 아두이노 > 스케치 > 라이브러리 포함하기 > .ZIP 라이브러리 추가… 이렇게 나오는데 센서 가까이서 해야 값이 잘나옴.. javalab.org/arduino_remote_contro..
빵판에 하려고 했는데 자리가 부족해서 그냥 끼웠다. 선이 너저분함;; 택트 스위치 누르면 8x8 led matrix의 글자가 변경되는 걸 하려고 했는데 누르니깐 너무 빠르게 바뀐다. 방법을 찾아야겠다. 저항이 이상한가 있는거 끼웠는뎅...;; 사야하나봄 ----------------------- 저항 1k옴 해야한다고 해서 붙였는데 조금 나아지긴했지만 동작이 원하는대로 안나오네 원래 버튼이 이런가보다..;; 어쨌든 더 나아진거에 의의를 두자.. https://www.arduino.cc/en/Tutorial/RowColumnScanning Arduino - RowColumnScanning Row-columm Scanning to control an 8x8 LED Matrix LED displays are ..