본문 바로가기
반응형

전체 글248

Python openpyxl #!pip3 install openpyxl jdcal from openpyxl import Workbook #workbook 생성 workb=Workbook() #worksheet 활성화 worksh=workb.active #A1에 'Hello World'값 입력 worksh['A1']='Hello World' # 시트 추가 worksh2=workb.create_sheet('테스트 시트',1) #숫자 100 입력 worksh2['A1']=100 #시트 추가 worksh3=workb.create_sheet('테스트 시트 3',2) #시트 삭제 workb.remove(worksh3) #시트명 변경 worksh2.title="새이름" #셀병합 #A1~E1셀 병합 worksh.merge_cells('B1:E1'.. 2021. 5. 18.
가변저항으로 LED 밝기 제어 회로구성 1. LED LED (-) GND LED (+) 저항 220ohm 저항 220ohm D6 (because ~6: PWM지원) 가변저항 (+) (+) 가변저항 (-) (-) 가변저항 (S) A14 void setup() { Serial.begin(9600); } void loop() { int readVal = analogRead(A1); // map함수(입력변수, 입력 최소, 입력 최대, 출력 최소, 출력 최대) // analog 입력범위: 10비트 / analog 출력범위: 8비트 이므로 // 각각 입력 2^10 , 출력 2^8 이므로 // 입력범위:0~1023, 출력범위: 0~255 int convertedVal = map(readVal, 0, 1023, 0, 255); analogWrite.. 2021. 5. 11.
음성인식(Voice Recognition)과 인공지능 가상 비서(Artificial Intelligent Virtual Assistant) 리눅스에서는 커널 2.4 버전까지는 OSS(Open Sound System)라는 사운드 드라이버 모듈을 사용하였고 이후 2.6 버전부터 ALSA(Advanced Linux Sound Architecture) 사운드 드라이버 모듈을 지원하고 있다. libasound 는 ALSA 시스템용 API를 제공하는 C 언어 라이브러리 PortAudio 라는 크로스플랫폼 오픈소스 오디오 입출력 라이브러리 PulseAudio는 다양한 오디오 소스 입력과 출력을 지원하는 사운드 서버 Jack Audio Connection Kit 는 오디오 녹음, 효과, 합성을 위한 저지연 오디오 서버인 jackd 를 포함 $ arecord -l $ aplay -l $ amixer cset numid=3 #(n=0:auto 1:analog.. 2021. 5. 10.
Kaggle API 사용하기 www.kaggle.com Kaggle: Your Machine Learning and Data Science Community Kaggle is the world’s largest data science community with powerful tools and resources to help you achieve your data science goals. www.kaggle.com - compete tab 선택 - "Bag of words meets bags of popcorn" 을 검색창에 입력 1. data탭 선택 & 직접 다운로드 2. kaggle API down - 아나콘다, 캐글api설치 >conda install kaggle - 계정 연동 ( 회원가입>어카운트 탭>create API T.. 2021. 5. 10.
반응형