Table of Contents:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @file main.cpp | |
| // @author Donghee Park | |
| // | |
| // Copyright (c) 2023 Donghee Park, all rights reserved | |
| #include <iostream> | |
| class Marine { | |
| int hp; | |
| int coord_x, coord_y; | |
| int damage; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import carla | |
| import random | |
| client = carla.Client('127.0.0.1', 2000) | |
| client.set_timeout(2.0) | |
| world = client.get_world() | |
| people = [] | |
| for i in range(2): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "mbed.h" | |
| DigitalOut power_out_led(D11); | |
| DigitalOut mppt_led(D12); | |
| DigitalOut fuel_led(D13); | |
| DigitalOut fuel_off(D7); | |
| DigitalOut batt_off(D9); | |
| AnalogIn power_out_volt(A0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/APMrover2/AP_MotorsUGV.cpp b/APMrover2/AP_MotorsUGV.cpp | |
| index 4ff5f35680..f5697d2035 100644 | |
| --- a/APMrover2/AP_MotorsUGV.cpp | |
| +++ b/APMrover2/AP_MotorsUGV.cpp | |
| @@ -743,15 +743,29 @@ void AP_MotorsUGV::output_throttle(SRV_Channel::Aux_servo_function_t function, f | |
| const int8_t reverse_multiplier = out_chan->get_reversed() ? -1 : 1; | |
| bool relay_high = is_negative(reverse_multiplier * throttle); | |
| + //gcs().send_text(MAV_SEVERITY_CRITICAL, "throttle %5.3f", (double) throttle); | |
| + |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Shell script for installing openCV 4.5.3 in ubuntu 18.04 | |
| # Run it as: | |
| # >> chmod +x install-OpenCV4.sh.sh | |
| # >> yes | sudo ./install-OpenCV4.sh.sh | |
| apt install build-essential cmake git pkg-config libgtk-3-dev | |
| apt install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev libxvidcore-dev libx264-dev | |
| apt install libjpeg-dev libpng-dev libtiff-dev gfortran openexr libatlas-base-dev | |
| apt install python3-dev python3-numpy libtbb2 libtbb-dev libdc1394-22-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [common] | |
| server_addr = frp.server.com | |
| server_port = 7000 | |
| [ssh] | |
| type = tcp | |
| local_ip = 127.0.0.1 | |
| local_port = 22 | |
| remote_port = 6000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://ebid.etri.re.kr/ebid/ | |
| # 6. 예비가격 및 예정가격 | |
| # ① 복수예비가격은 전자입찰 시작 직전에 전자입찰시스템의 난수발생기를 통하여 기초금액(예비가격 | |
| # 기초금액)의 ±2% 범위 내에서 15개의 예비가격으로 생성됩니다. | |
| # ② 예정가격은 전자입찰자가 응찰조서작성시 추첨한 예비가격번호 중 가장 많이 추첨된 번호순으로 4개를 | |
| # 선정하여 각 번호에 해당하는 예비가격을 산술평균하여 결정됩니다 | |
| # | |
| # 나라장터 복수예비가격 선정 방법 (더 자세히) | |
| # http://www.g2b.go.kr/pt/e-support/fwdEsupportMain.do?supportUrl=/pt/notice/listNotice.do 에서 예비가격 검색 | |
| # |