Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[jsk_fetch_startup] Update switchbot device name in navigation-utils.l #1457

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions jsk_fetch_robot/jsk_fetch_startup/euslisp/navigation-utils.l
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@
(send *ri* :angle-vector-raw (send *fetch* :angle-vector) 3000 :head-controller)
(send *ri* :wait-interpolation))
((eq control-switchbot :api)
(control-device "/eng2/7f/73b2/light/upper/switch" "turnOn" :wait t)
(control-device "/eng2/7f/73b2/light/lower/switch" "turnOn" :wait t)
(control-device "/eng2/7f/73b2_bot_kitchen" "turnOn" :wait t)
(control-device "/eng2/7f/73b2_bot_window" "turnOn" :wait t)
(send *ri* :speak-jp "電気をつけました" :wait t))))


Expand All @@ -259,8 +259,8 @@
(send *ri* :angle-vector-raw (send *fetch* :angle-vector) 3000 :head-controller)
(send *ri* :wait-interpolation))
((eq control-switchbot :api)
(control-device "/eng2/7f/73b2/light/upper/switch" "turnOff" :wait t)
(control-device "/eng2/7f/73b2/light/lower/switch" "turnOff" :wait t)
(control-device "/eng2/7f/73b2_bot_kitchen" "turnOff" :wait t)
(control-device "/eng2/7f/73b2_bot_window" "turnOff" :wait t)
(send *ri* :speak-jp "電気を消しました" :wait t))))


Expand Down