일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 구루미비즈
- 볼트 모델링
- Premiere
- fusion360
- 3D 모델링
- 3dmodeling
- 22ww.tistory.com
- 프리미어
- 3D modeling
- micro-bit
- 무드등
- seoulmysoul
- BrainCar
- suno
- laserutting
- 서울마이소울
- 3Dprinting
- 구루미 장애사항
- ChatGPT
- 구루미 고객센터
- LayerCutting
- 3D프린팅
- lasercutting
- FUSION 360
- 구루미biz(gooroomeebiz)
- 3d
- 3D모델링
- 레이저커팅
- 3D PRINTING
- 구루미biz
- Today
- Total
목록분류 전체보기 (180)
CodingMaker
보호되어 있는 글입니다.
보호되어 있는 글입니다.
보호되어 있는 글입니다.
3.3v를 사용한다. 릴레이는 5V로 사용해야해서 동작을 하지 못한다. https://thingspeak.com/ IoT Analytics - ThingSpeak Internet of Things Weather Station This project shows how to build an Arduino-based weather station that sends data to ThingSpeak. Once the data is collected, MATLAB is used to view trends of the data, plot histograms of the data, calculate dew point from the raw temperature thingspeak.com https://github.c..
http://roborisen.com/sub/edu.php PINGPONG roborisen.com 교안 다운로드 https://drive.google.com/drive/u/0/folders/1PBESHh94oo5rc7PpnWFS6RPkqO6SNZwg 핑퐁로봇 - Google 드라이브 drive.google.com 그룹 아이디 56개 경우의 수까지 가능하다 앞자리 1~7번까지 가능하고 0~7번까지 가능하다. air 뜨는 걸로 펌웨어 업데이트 해야한다.
거북이 그래픽 응용 마우스로 거북이를 움직이는 코드 실행 import turtle as t t.speed(0) t.pensize(2) t.hideturtle() t.onscreenclick(t.goto) 타자 게임 타자 연습 프로그램 실행 import random import time w=["cat", "dog", "fox","monkey","mouse","panda","frog","snake","wolf"] n=1 #문제 번호 print("[타자문제] 준비되면 엔터!") input() #사용자가 엔터를 누를 때까지 기다립니다. start = time.time() #시작 시간을 기록합니다. q=random.choice(w) while n 0: t.forward(15) t.right(5) d=t.dista..
- 정보 입력/출력 처리 - True/False 처리 - Random 모듈 활동 import random seq = [1,3,4,6,7,15] print(random.random()) print(random.randint(21,50)) print(random.choice(seq)) random으로 움직이는 거북이를 그려본다. random으로 움직이는 거북이 실행 import turtle as t import random t.shape("turtle") # '거북이' 모양의 거북이 그래픽을 사용 t.speed(0) for x in range(500): # 거북이를 500번 이동 a=random.randint(1,360) # 1~360사이의 수를 골라 a에 저장 t.setheading(a) # a 각도로 거..
아나콘다 3.7 다운로드 https://www.anaconda.com/distribution/ All Users 로 설치하기 import pandasimport pandas as pd 입력하고 Shift+Enter http://localhost:8888/notebooks/Untitled.ipynb?kernel_name=python3 행과 열로 보기 type 확인할때는 아래와 같이 입력하고 Shift+Enter 데이터 타입을 알아야할때 확인하는 방법(정수, 문자열 등) NaN (Not to Number) DataFrame (csv) 예약어가 없어서 아쉬운 점 데이터에 접근하는 시간 차이 비교 order.at[1,"date"] at은 한 구문만 꺼내오고 속도가 빠르다. 조건을 변수로 빼 올수 있다. 원하는 ..
보호되어 있는 글입니다.
가변저항값 확인하기 1 2 3 4 5 6 7 8 9 void setup() { Serial.begin(9600); } void loop() { Serial.println(analogRead(A0)); //delay(100); } I2C 통신 https://m.blog.naver.com/darknisia/220669400101 I2C 주소 스캔하기 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 31 32 33 34 35 36 37 38 39 40 41 42 void setup() { Wire.begin(); Serial.begin(9600); while (!Serial); // Leonardo: wait fo..