영문이름 표기 방법 |
1. 국어평생교육 「우리말 배움터」 접속
http://urimal.cs.pusan.ac.kr/urimal_new/
2. 「로마자 변환기」배너 클릭
3. 변환할 성명 입력
4. “인명” 선택
5. “바꾸기” 클릭
6. “허용” 로마자 표기법 선택
인사데이터작성요령 |
1. 연번
- 텍스트로 입력
영문이름 표기 방법 |
1. 국어평생교육 「우리말 배움터」 접속
http://urimal.cs.pusan.ac.kr/urimal_new/
2. 「로마자 변환기」배너 클릭
3. 변환할 성명 입력
4. “인명” 선택
5. “바꾸기” 클릭
6. “허용” 로마자 표기법 선택
인사데이터작성요령 |
1. 연번
- 텍스트로 입력
입찰- 공고 등
- 조달청 나라장터 전자입찰 기본원칙 왕초보자들을 위한 7가지
https://youtu.be/sU5C5Hc_ueE?si=-2G00_o_gH90vaLo
- https://www.igunsul.net/detail_bid/index/myroom7837828
정보공개- https://sinban-h.gne.go.kr/sinban-h/na/ntt/selectNttList.do?mi=134580&bbsId=114481
(긴급)신반정보고등학교 천장교체 전기공사 수의계약 안내 공고 (긴급공고)
https://www.igunsul.net/detail_bid/index/bid7532834
# 인터넷우체국
우정사업본부 https://service.epost.go.kr/comm.RetrievePostagSrvcCenter.postal
의령군청 : https://www.uiryeong.go.kr/index.uiryeong
정보공개- https://www.uiryeong.go.kr/index.uiryeong?menuCd=DOM_000000202000000000
산청군청 : https://www.sancheong.go.kr/www/index.do
정보공개 – https://www.sancheong.go.kr/www/contents.do?key=94
경남교육청 :
경남도청 :
서울시청 :
제주특별자치도 https://www.jeju.go.kr/index.htm:
88. 드론 https://youtu.be/4H5zXPBIDKg?si=mhP_RYGZZthkCsnh
91. 드론기초 https://youtu.be/_QR-z_vm3qg?si=vQ_NAhISXAZnOBbr
92. 드론pixhttps://youtu.be/eG1MgflG3AM?si=qo0bjFPrGn85jFtQ
14 PART 01 스크레래지를 활용한 제어
7 스크래치 2.0 실행 및 메뉴 설명
@무대 메뉴 : 무대를 만드는 곳으로 저장소에서 불러오기, 그리기, 업로드하기
등의 메뉴가 있다.
프로렉트 명
스크래치 3.0은 인터 환경하에서 사용할 수 있도록 되어 있다. 스크래치
20 오프라인 에디터는 인터넷이 원활하지 않은 교육 환경하에서도 사용할
수 있다.
chmitedu
교재에서는 드론 등의 원활한 제어를 위해 스크래치 2.0 오프라인 에디터
사용한다. 스크 래치 3.0은 스크래치 2.0의 업그레이드 판이므로 스크래치
이해한다면 스크래치 3.0을 사용하는 데 문제가 없을 것이라 판단된다.
지 홈페이지 접속
니티
디터를
여 다운로드를 클릭한다.
이이니이 소개
유용한 자료들
이이디어
자주 물는 길은AOI
법률
기인정보보로경책
디차 니않 저작법
스크레치 패일리
Soatcnd
korot
Seratch Day
https://scratch.mit.edu/download
스크레치기반 드론제어 https://m.blog.naver.com/jinijiniblog/221233766801
인터넷에 연결되지 않아도 Scratch 프로젝트를 만들고 저장하고 싶으시나요? Scratch 앱을 지금 무료로 다운로드하세요.
https://scratch.mit.edu/downloadScratch - Scratch Offline Editor (mit.edu)
https://scratch.mit.edu/about/
S4A-search for aduino
https://blog.naver.com/hellosoft/223052806158
https://blog.naver.com/kidsmaker/222013015928
https://m.post.naver.com/viewer/postView.nhn?volumeNo=25300792&memberNo=6255089
https://blog.naver.com/indsolution/223052728402
스크래치 2.0은 오프라인 에디터는 및 메뉴설명 인터넷 원활하지 않는 교육환경에서 사용할 수 있다. : 확장자 없음
스크래치 3.0은 설치 및 메뉴설명 https://scratch.mit.edu/
인터넷환경에서 가능하고 확장자는 Sb-1등으로 생성
드론제어 - 블루투스 동글 드라이버 설치하기 p.121 89, 108,88
아두이노 조이스틱 - https://blog.naver.com/boilmint7/220927175653
- https://m.blog.naver.com/microfun/221736254902
#1. 스케치 (LED-2V)연습 코드 p. 121~
//1. 목표 : LED를 ON, OFF한다 2. 필요부품 LED 3EA, 220오옴 저항 3ea
3. 하드웨어 구성 4. 스케치하기
Configures the specified pin to behave either as an input or an output. See the Digital Pins page for details on the functionality of the pins.
It is possible to enable the internal pullup resistors with the mode INPUT_PULLUP
. Additionally, the INPUT
mode explicitly disables the internal pullups.
pinMode(pin, mode)
pin
: the Arduino pin number to set the mode of.mode
: INPUT
, OUTPUT
, or INPUT_PULLUP
. See the Digital Pins page for a more complete description of the functionality.
Nothing
The code makes the digital pin 13 OUTPUT
and Toggles it HIGH
and LOW
void setup() {
pinMode(13, OUTPUT); // sets the digital pin 13 as output
}
void loop() {
digitalWrite(13, HIGH); // sets the digital pin 13 on
delay(1000); // waits for a second
digitalWrite(13, LOW); // sets the digital pin 13 off
delay(1000); // waits for a second
}
The analog input pins can be used as digital pins, referred to as A0, A1, etc.
EXAMPLE Description of the digital pins
(numpy -
numpy(넘파이) 기초 정리 (tistory.com)
1. Numpy란
Numpy는 C언어로 구현된 파이썬 라이브러리로써, 고성능의 수치계산을 위해 제작되었습니다. Numerical Python의 줄임말이기도 한 Numpy는 벡터 및 행렬 연산에 있어서 매우 편리한 기능을 제공합니다.
또한 이는 데이터분석을 할 때 사용되는 라이브러리인 pandas와 matplotlib의 기반으로 사용되기도 합니다.
numpy에서는 기본적으로 array라는 단위로 데이터를 관리하며 이에 대해 연산을 수행합니다. array는 말그대로 행렬이라는 개념으로 생각하시면 됩니다.
먼저 numpy를 사용하기 위해서는 아래와 같은 코드로 numpy를 import해야 합니다.
import numpy as np
사실상, numpy를 설치하고 단순히 import numpy 만 해도 되지만, 이를 코드에서 보다 편하게 사용하기 위해 as np 를 붙임으로써 np라는 이름으로 numpy를 사용합니다.
아래 실습에서는 jupyter notebook을 사용하였습니다.
출처: https://doorbw.tistory.com/171 [Tigercow.Door:티스토리]
이하 엄청 중요 본문 참조할 것
Numpy 기초
출처: https://doorbw.tistory.com/171 [Tigercow.Door:티스토리]
프리킥 / https://kr.freepik.com/vectors/%EA%B3%B5%EC%A0%95-%EA%B4%80%EB%A6%AC 1. 통합내역프로그램 다운로드(XCOST professional) http://xcost.me/bbs/boa...