-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from ibis-ssl/add-1012
Add 1012
- Loading branch information
Showing
13 changed files
with
395 additions
and
126 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
device_id = 0 | ||
v4l2-ctl -d $device_id -c exposure_dynamic_framerate=0 | ||
v4l2-ctl -d $device_id -c auto_exposure=1 | ||
v4l2-ctl -d $device_id -c focus_automatic_continuous=0 | ||
v4l2-ctl -d $device_id -c focus_absolute=0 | ||
|
||
|
||
v4l2-ctl -d $device_id -c exposure_time_absolute=120 | ||
v4l2-ctl -d $device_id -c brightness=120 | ||
v4l2-ctl -d $device_id -c sharpness=400 |
301 changes: 215 additions & 86 deletions
301
consai_ros2/consai_visualizer/src/consai_visualizer/field_widget.py
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# grSim | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ネットワーク設定 | ||
|
||
## ROS関連 | ||
|
||
https://autowarefoundation.github.io/autoware-documentation/pr-347/installation/additional-settings-for-developers/#network-settings-for-ros-2 | ||
|
||
### ローカルホストでマルチキャスト | ||
```bash | ||
sudo ip link set multicast on lo | ||
``` | ||
|
||
## インターネット接続とロボット接続の共存 | ||
|
||
ロボットのアドレスに対して静的ルーティングを設定する | ||
|
||
`/etc/netplan/01-network-manager-all.yaml` | ||
```yaml | ||
network: | ||
version: 2 | ||
renderer: networkd | ||
ethernets: | ||
enp3s0: | ||
addresses: | ||
- 192.168.1.2/24 | ||
gateway4: 192.168.1.1 | ||
routes: | ||
- to: 192.168.2.0/24 | ||
via: 192.168.1.1 | ||
- to: 192.168.3.0/24 | ||
via: 192.168.1.1 | ||
|
||
``` |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
events: | ||
- event: "HALT" | ||
session: "HALT" | ||
- event: "STOP" | ||
session: "formation" | ||
- event: "THEIR_KICKOFF_PREPARATION" | ||
session: "formation" | ||
- event: "THEIR_KICKOFF_START" | ||
session: "formation" | ||
- event: "OUR_KICKOFF_PREPARATION" | ||
session: "formation" | ||
- event: "OUR_KICKOFF_START" | ||
session: "SIMPLE_ATTACK" | ||
- event: "INPLAY" | ||
session: "SIMPLE_ATTACK" | ||
- event: "OUR_BALL_PLACEMENT" | ||
session: "ball_placement_with_skill" |