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

Python twist example #88

Merged
merged 3 commits into from
Mar 13, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions protos/farm_ng/canbus/canbus.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ message SendVehicleTwistCommandRequest {

// Message to send a twist command to the vehicle
message SendVehicleTwistCommandReply {
// Whether the command was successfully sent
bool success = 1;
// The time the message is "received" / "sent" on the canbus
double stamp = 2;
Expand Down
52 changes: 52 additions & 0 deletions py/examples/vehicle_twist/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Copyright (c) farm-ng, inc.
#
# Licensed under the Amiga Development Kit License (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://github.com/farm-ng/amiga-dev-kit/blob/main/LICENSE
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations

import argparse
import asyncio

from farm_ng.canbus import canbus_pb2
from farm_ng.canbus.canbus_client import CanbusClient
from farm_ng.service.service_client import ClientConfig


async def request_generator(twist: canbus_pb2.Twist2d) -> iter[canbus_pb2.SendVehicleTwistCommandReply]:
while True:
yield canbus_pb2.SendVehicleTwistCommandRequest(command=twist)


async def main(config: ClientConfig, twist: canbus_pb2.Twist2d) -> None:
# Connect to the robot
client = CanbusClient(config)

# get the tiwst command stream
stream = client.stub.sendVehicleTwistCommand(request_generator(twist))

# print the stream results
async for twist_state in stream:
print(twist_state)


if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--address', default='localhost')
parser.add_argument('--port', default=50060)
parser.add_argument("--vel-x", type=float, default=0.0)
parser.add_argument("--theta", type=float, default=0.0)
args = parser.parse_args()

# create the twist command
twist = canbus_pb2.Twist2d(linear_velocity_x=args.vel_x, angular_velocity=args.theta)

asyncio.run(main(ClientConfig(address=args.address, port=args.port), twist))
83 changes: 83 additions & 0 deletions py/examples/vehicle_twist/virtual_keyboard.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# Copyright (c) farm-ng, inc.
#
# Licensed under the Amiga Development Kit License (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://github.com/farm-ng/amiga-dev-kit/blob/main/LICENSE
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations

import argparse
import asyncio

import cv2
from farm_ng.canbus import canbus_pb2
from farm_ng.canbus.canbus_client import CanbusClient
from farm_ng.service.service_client import ClientConfig

# NOTE: becareful with these values, they are in m/s and rad/s
MAX_LINEAR_VELOCITY_MPS = 0.5
MAX_ANGULAR_VELOCITY_RPS = 0.5

VELOCITY_INCREMENT = 0.1


async def request_generator() -> iter[canbus_pb2.SendVehicleTwistCommandReply]:
# the command to send
twist = canbus_pb2.Twist2d()

# open a window to capture key presses
cv2.namedWindow('Virtual Keyboard')

while True:
key = cv2.waitKey(1) # capture key presses

if key == ord(" "):
twist.linear_velocity_x = 0.0
twist.linear_velocity_y = 0.0
twist.angular_velocity = 0.0

if key == ord("i"):
twist.linear_velocity_x += VELOCITY_INCREMENT
twist.linear_velocity_x = min(twist.linear_velocity_x, MAX_LINEAR_VELOCITY_MPS)
elif key == ord("k"):
twist.linear_velocity_x -= VELOCITY_INCREMENT
twist.linear_velocity_x = max(twist.linear_velocity_x, -MAX_LINEAR_VELOCITY_MPS)

if key == ord("j"):
twist.angular_velocity += VELOCITY_INCREMENT
twist.angular_velocity = min(twist.angular_velocity, MAX_ANGULAR_VELOCITY_RPS)
elif key == ord("l"):
twist.angular_velocity -= VELOCITY_INCREMENT
twist.angular_velocity = max(twist.angular_velocity, -MAX_ANGULAR_VELOCITY_RPS)

edgarriba marked this conversation as resolved.
Show resolved Hide resolved
yield canbus_pb2.SendVehicleTwistCommandRequest(command=twist)
await asyncio.sleep(0.1)


async def main(config: ClientConfig) -> None:
# Connect to the robot
client = CanbusClient(config)

# get the tiwst command stream
stream = client.stub.sendVehicleTwistCommand(request_generator())

# print the stream results
async for twist_state in stream:
print(twist_state)
pass


if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--address', default='localhost')
parser.add_argument('--port', default=50060)
args = parser.parse_args()

asyncio.run(main(ClientConfig(address=args.address, port=args.port)))