Skip to content

Instantly share code, notes, and snippets.

View bhaktatejas922's full-sized avatar

bhaktatejas922

View GitHub Profile
@bhaktatejas922
bhaktatejas922 / serial.py
Last active September 19, 2024 18:37
com_test
import time
import serial
import datetime
class MockSerial:
def __init__(self, port, baudrate):
self.port = port
self.baudrate = baudrate
self.is_open = False
@bhaktatejas922
bhaktatejas922 / ros2-install-mac.sh
Last active December 15, 2023 18:57
Macos Ros2 install script wth conda
#!/bin/zsh
# Ensure Xcode and Command Line Tools are installed
xcode-select --install
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -license
# Install Homebrew
which -s brew