결과

    MBTI 성격검사 결과 - ENFP

    MBTI검사가 흥하기에 나도 검사를 해보았다. https://www.16personalities.com/ Free personality test, type descriptions, relationship and career advice | 16Personalities “It’s so incredible to finally be understood.” Take our Personality Test and get a “freakishly accurate” description of who you are and why you do things the way you do. www.16personalities.com 검사 결과는 ENFP-A 이다. 재기발랄한 활동가. 읽어보니 내 성격이랑 비슷하다. 왜냐면 내 성..

    [아두이노] IR Receiver 소스 및 결과 화면

    [아두이노] IR Receiver 소스 및 결과 화면

    1. 소스 #include const unsigned int IR_RECEIVER_PIN = 11;const unsigned int BAUD_RATE = 9600; IRrecv ir_rev(IR_RECEIVER_PIN);decode_results results; void setup() { // put your setup code here, to run once: Serial.begin(BAUD_RATE); ir_rev.enableIRIn();} void printStatus(const decode_results* results) { const int protocol = results->decode_type; if (protocol == UNKNOWN) { Serial.println("not recogni..