[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 10
·
카테고리 없음
보호되어 있는 글입니다.
[Arduino] Thermistor, Peltier module 을 활용해 Rising time과 Return Time 다항식 만들기 / 파이썬 / 아두이노
·
HCI/Arduino
이전 포스팅에서 만든 최종 결과로, 다항식을 만들어볼 예정입니다.일단 제 실험 결과는 아래처럼 나왔습니다.더보기FolderFileDeltaRise_Time_sReturn_Time_sdelta_-1.0run_1.csv-11.0291.027delta_-1.0run_2.csv-11.0291.027delta_-1.0run_3.csv-11.030.822delta_-1.0run_4.csv-11.031.027delta_-1.0run_5.csv-11.0291.028delta_-2.0run_1.csv-21.6481.644delta_-2.0run_2.csv-21.751.644delta_-2.0run_3.csv-21.6481.644delta_-2.0run_4.csv-21.751.028delta_-2.0run_5.csv-21..
[Arduino] Thermistor, Peltier module 을 활용해 Rising time과 Return Time 계산하기 / 파이썬 / 아두이노
·
HCI/Arduino
이번 포스트에서는 아두이노와 파이썬을 활용해 Peltier 모듈을 제어하고, 온도 상승 시간 (Rising time) 및 복귀 시간 (Return time) 을 계산하는 실험을 정리합니다. 실시간 PID 제어를 통해 일정한 온도 변화 자극을 만들고, 이후 수집된 데이터를 기반으로 파이썬에서 자동 분석을 수행합니다. 실험 개요목표: ΔT 자극을 주고 난 뒤, 목표 온도 도달 시간과 baseline 온도로 복귀하는 시간을 측정센서: Thermistor (NTC)액츄에이터: Peltier 모듈제어 방식: PID 제어샘플링 주기: 10Hz (100ms)데이터 수집 방식: Serial 통신 → CSV 저장하드웨어 구성Arduino MegaPeltier module (Thermoelectric cooler)Ther..
[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 9
·
영어공부
보호되어 있는 글입니다.
[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 7
·
영어공부
화상영어에서 연습한 주요 표현들을 상황별로 정리한 글입니다. https://engoo.com/app/daily-news/article/yokohama-bars-introduce-lets-chat-wristbands/kt-qtBP2EfCq4RMFi7_W-Q Yokohama Bars Introduce 'Let's Chat' Wristbands | Engoo Daily NewsSometimes when you go out to a bar, you just want to have a quiet drink by yourself. On other nights, you might want to chat and make some new friends.engoo.com 오늘 배운 내용은 요코하마! 단어 내일은 r..
[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 6
·
영어공부
화상영어에서 연습한 주요 표현들을 상황별로 정리한 글입니다. ㅇ Exercise 3 – Questions1. What percentage of people feel their skin is "more radiant" after a seaside holiday?→ About 41% (two-thirds) of people say their skin looks more radiant after a seaside holiday.→ **약 41% (3분의 **의 사람들이 바닷가 휴가 후 피부가 더 빛나 보인다고 느낍니다.2. What effect can the sea, salt and wind have on some people's skin?→ For some people, the sea, salt, and ..
[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 5
·
영어공부
화상영어에서 연습한 주요 표현들을 상황별로 정리한 글입니다.  Vocabulary영어 단어가 모자란 난.. 오늘 단어에 대해 공부했다.제목: Why Vacations by the Sea Make Our Skin Feel Goodhttps://engoo.com/app/daily-news/article/why-vacations-by-the-sea-make-our-skin-feel-good/hzVAqgjCEfC6_29oGUYCMw Why Vacations by the Sea Make Our Skin Feel Good | Engoo Daily NewsThere is a very old British song called "I Do Like to Be Beside the Seaside." And more than..
[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 4
·
영어공부
화상영어에서 연습한 주요 표현들을 상황별로 정리한 글입니다. 주제: The Safest Email Sign-offs to Use at WorkLesson link https://engoo.com/app/daily-news/article/the-safest-email-sign-offs-to-use-at-work/NasVzityEeyNiTOXQf-nxA The Safest Email Sign-offs to Use at Work | Engoo Daily NewsWhat is the best way to sign off a work email? A lot of us worry about how formal is too formal or how friendly is too friendly. Like one of ..
[화상 영어 복습] 영어 면접 & 일상 대화 표현 정리 - day 3
·
영어공부
화상영어에서 연습한 주요 표현들을 상황별로 정리한 글입니다. 직장 인터뷰 질문 3.1. Personal details• Let’s just run through your CV together• I’d just like to ask you a few questions about...• Can you please confirm that your full name is ......, please?• Can you just confirm your age and date of birth for me, please?• So, I see you’re single/married/divorced • You have.... children I see, – how old are they? • How long have you..
백준 / [복습] 2839번 설탕배달 - 탐욕 / Python 파이썬
·
coding test - python/백준
*문제 출처는 백준에 있습니다.문제 제목: 2839번 설탕배달문제 사이트: https://www.acmicpc.net/problem/2839나의 풀이n = int(input()) # 설탕result = 0 # 봉지 수while n >= 0: if n % 5 == 0: # 5로 나눈 나머지가 0인 경우 result += n // 5 # 5로 나눈 몫 추력 print(result) break n -= 3 # 설탕이 5의 배수가 될때까지 반복 result += 1 # 봉지 추가else: print(-1) # while문이 거짓이 되면 -1 출력n이 3으로만 나누어떨어지는 경우를 어떻게 해결하지 생각했는데어차피 0 % 5 = 0 이라 조건이 성립함 0 ..
백준 / 2529번 부등호 - 순열 / Python 파이썬
·
coding test - python/백준
*문제 출처는 백준에 있습니다.문제 제목: 2529번 부등호문제 사이트: https://www.acmicpc.net/problem/2529나의 풀이a = int(input())arr = list(input().split())max_ = '-1'min_ = '9999999999999'visited = [False] * 10lst = [i for i in range(10)]def calculaion(lst): idx = 0 for i in range(1,len(lst)): if arr[idx] == '' and int(lst[i - 1]) > int(lst[i]): idx += 1 continue else: ret..
백준 / 10819번 차이를 최대로 - 순열 / Python 파이썬
·
coding test - python/백준
*문제 출처는 백준에 있습니다.문제 제목: 10819번 차이를 최대로 - 순열문제 사이트: https://www.acmicpc.net/problem/10819 나의 풀이 순열 구해서 모든 순열에 대해 검사하기# |A[0] - A[1]| + |A[1] - A[2]| + ... + |A[N-2] - A[N-1]|a = int(input())arr = list(map(int, input().split()))# 차이가 최대가 되려면 가장 큰수 - 가장 작은수answer = 0visited = [False] * adef calculation(lst): tmp = 0 for i in range(1,len(lst)): tmp += abs(lst[i] - lst[i-1]) return tm..