Apr 30, 2019
Apr 29, 2019
Apr 26, 2019
537. Just because I like the way it sounds. (그냥 꽂혔어요.)
or
Just because.
- 이름은 왜 그걸로 지었어요? 라는 질문에 대한 답변 중 하나.
Just because.
- 이름은 왜 그걸로 지었어요? 라는 질문에 대한 답변 중 하나.
Apr 25, 2019
Apr 24, 2019
2. Several HTML grammars (HTML 몇가지 문법)
- Begin a new line (줄바꿈)
: <br />
- Space bar (띄어쓰기)
:  
- Annotation (주석처리)
: <!-- xxxxxx -->
- Left/Center/Right alignment (왼쪽, 가운데, 오른쪽 정렬)
: <div style="text-align:left or center or right">
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
</div>
: <br />
- Space bar (띄어쓰기)
:  
- Annotation (주석처리)
: <!-- xxxxxx -->
- Left/Center/Right alignment (왼쪽, 가운데, 오른쪽 정렬)
: <div style="text-align:left or center or right">
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
</div>
- Block drag (드래그 방지)
아래 소스를 테마->HTML편집란에 추가하기
: html, body, div, span, object,
form, input, h1, h2, button, label, a, img {
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-select: none;
/* this will work for QtWebKit in future */
-webkit-user-drag: none;
}
Apr 23, 2019
Pololu dual motor driver - DRV8835 - Arduino code (모터 드라이버)
- Simple Arduino code to operate two DC motors with the motor driver.
- 2개의 DC 모터를 구동시키기 위해 모터 드라이버를 이용하는 간단한 아두이노 코드.
Apr 22, 2019
Apr 20, 2019
Apr 19, 2019
Arduino PWM signals - analogWrite() (아두이노 PWM 신호)
[Readme]
Arduino (ATmega168 or ATmega328P)
- analogWrite() function works on pins 3, 5, 6, 9, 10, and 11.
- On the Uno, pro-mini and etc, pins 5 and 6 have a 980 Hz as PWM frequency and the others is 490 Hz.
- If you use the <Servo.h> library, you cannot use analogWrite() function on pins 9 and 10. In other words, you cannot drive some servo motors on pins 9 and 10 using analogWrite() function.
---------------------------------------------------------------------------------------
- analogWrite() 함수는 핀 3, 5, 6, 9, 10, and 11 에서 동작한다.
- 우도, 프로미니, 기타등등 보드에서 핀 5와 6은 980 Hz로 PWM 시그널을 발생하며 다른 핀에서는 490 Hz로 시그널을 발생한다.
- <Servo.h> 라이브러리를 사용하게 되면 핀 9와 10에서 analogWrite() 함수를 사용할 수 없다. 즉 핀 9번과 10에서 analogWrite() 함수를 이용해 서보모터를 구동시킬 수 없다.
Arduino (ATmega168 or ATmega328P)
- analogWrite() function works on pins 3, 5, 6, 9, 10, and 11.
- On the Uno, pro-mini and etc, pins 5 and 6 have a 980 Hz as PWM frequency and the others is 490 Hz.
- If you use the <Servo.h> library, you cannot use analogWrite() function on pins 9 and 10. In other words, you cannot drive some servo motors on pins 9 and 10 using analogWrite() function.
---------------------------------------------------------------------------------------
- analogWrite() 함수는 핀 3, 5, 6, 9, 10, and 11 에서 동작한다.
- 우도, 프로미니, 기타등등 보드에서 핀 5와 6은 980 Hz로 PWM 시그널을 발생하며 다른 핀에서는 490 Hz로 시그널을 발생한다.
- <Servo.h> 라이브러리를 사용하게 되면 핀 9와 10에서 analogWrite() 함수를 사용할 수 없다. 즉 핀 9번과 10에서 analogWrite() 함수를 이용해 서보모터를 구동시킬 수 없다.
Apr 18, 2019
Apr 17, 2019
Bluetooth HC-06 ATcommand setting - Arduino code (블루투스 HC-06)
- Arduino code for HC-06 bluetooth setting and some AT commands examples in the serial monitor.
(HC-06 블루투스 모듈 세팅을 위한 아두이노 코드와 AT 명령어 사용 예시)
/////////////////////////////////////////////////////////
//main code//
/////////////////////////////////////////////////////////
#include <SoftwareSerial.h>
//4800, 9600, 19200, 38400, 57600, 115200, ...
#define baud_rate 9600
int blueTx = 2;
int blueRx = 4;
SoftwareSerial mySerial(blueTx, blueRx);
void setup() {
// put your setup code here, to run once:
Serial.begin(baud_rate);
mySerial.begin(baud_rate);
Serial.print("Bluetooth ready");
}
void loop() {
// put your main code here, to run repeatedly:
if(mySerial.available()){
Serial.write(mySerial.read());
}
if(Serial.available()){
mySerial.write(Serial.read());
}
}
(HC-06 블루투스 모듈 세팅을 위한 아두이노 코드와 AT 명령어 사용 예시)
/////////////////////////////////////////////////////////
//main code//
/////////////////////////////////////////////////////////
#include <SoftwareSerial.h>
//4800, 9600, 19200, 38400, 57600, 115200, ...
#define baud_rate 9600
int blueTx = 2;
int blueRx = 4;
SoftwareSerial mySerial(blueTx, blueRx);
void setup() {
// put your setup code here, to run once:
Serial.begin(baud_rate);
mySerial.begin(baud_rate);
Serial.print("Bluetooth ready");
}
void loop() {
// put your main code here, to run repeatedly:
if(mySerial.available()){
Serial.write(mySerial.read());
}
if(Serial.available()){
mySerial.write(Serial.read());
}
}
Apr 16, 2019
Apr 5, 2019
Let's start Google Blogger. (구글 블로거 시작!)
Let's start Google Blogger.
================================================
구글 블로거 시작!
================================================
구글 블로거 시작!
Subscribe to:
Posts (Atom)