diff --git a/jetson/ros2_ws/src/saltybot_obstacle_memory/package.xml b/jetson/ros2_ws/src/saltybot_obstacle_memory/package.xml
new file mode 100644
index 0000000..fc47050
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_obstacle_memory/package.xml
@@ -0,0 +1,29 @@
+
+
+
+ saltybot_obstacle_memory
+ 0.1.0
+
+ Persistent spatial memory map for LIDAR-detected obstacles and hazards.
+ Maintains a grid-based occupancy map with temporal decay, persistent hazard classification,
+ and OccupancyGrid publishing for Nav2 integration (Issue #453).
+
+ seb
+ MIT
+
+ rclpy
+ std_msgs
+ sensor_msgs
+ nav_msgs
+ geometry_msgs
+ ament_index_python
+
+ ament_copyright
+ ament_flake8
+ ament_pep257
+ python3-pytest
+
+
+ ament_python
+
+
diff --git a/jetson/ros2_ws/src/saltybot_obstacle_memory/resource/saltybot_obstacle_memory b/jetson/ros2_ws/src/saltybot_obstacle_memory/resource/saltybot_obstacle_memory
new file mode 100644
index 0000000..e69de29
diff --git a/jetson/ros2_ws/src/saltybot_obstacle_memory/saltybot_obstacle_memory/__init__.py b/jetson/ros2_ws/src/saltybot_obstacle_memory/saltybot_obstacle_memory/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/jetson/ros2_ws/src/saltybot_obstacle_memory/setup.cfg b/jetson/ros2_ws/src/saltybot_obstacle_memory/setup.cfg
new file mode 100644
index 0000000..af242a9
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_obstacle_memory/setup.cfg
@@ -0,0 +1,4 @@
+[develop]
+script_dir=$base/lib/saltybot_obstacle_memory
+[install]
+install_lib=$base/lib/saltybot_obstacle_memory
diff --git a/jetson/ros2_ws/src/saltybot_obstacle_memory/setup.py b/jetson/ros2_ws/src/saltybot_obstacle_memory/setup.py
new file mode 100644
index 0000000..98a156e
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_obstacle_memory/setup.py
@@ -0,0 +1,32 @@
+from setuptools import setup
+import os
+from glob import glob
+
+package_name = 'saltybot_obstacle_memory'
+
+setup(
+ name=package_name,
+ version='0.1.0',
+ packages=[package_name],
+ data_files=[
+ ('share/ament_index/resource_index/packages',
+ ['resource/' + package_name]),
+ ('share/' + package_name, ['package.xml']),
+ (os.path.join('share', package_name, 'launch'),
+ glob('launch/*.py')),
+ (os.path.join('share', package_name, 'config'),
+ glob('config/*.yaml')),
+ ],
+ install_requires=['setuptools', 'pyyaml', 'numpy'],
+ zip_safe=True,
+ maintainer='seb',
+ maintainer_email='seb@vayrette.com',
+ description='Persistent spatial memory map for obstacles and hazards from LIDAR',
+ license='MIT',
+ tests_require=['pytest'],
+ entry_points={
+ 'console_scripts': [
+ 'obstacle_memory = saltybot_obstacle_memory.obstacle_memory_node:main',
+ ],
+ },
+)
diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/package.xml b/jetson/ros2_ws/src/saltybot_photo_capture/package.xml
new file mode 100644
index 0000000..66198bd
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_photo_capture/package.xml
@@ -0,0 +1,25 @@
+
+
+
+ saltybot_photo_capture
+ 0.1.0
+
+ Photo capture service for SaltyBot — snapshot + timelapse + event-triggered.
+ Issue #456: Manual, timelapse, and event-triggered photo capture with
+ metadata, storage management, and WiFi sync to NAS.
+
+ seb
+ MIT
+ rclpy
+ std_msgs
+ sensor_msgs
+ cv_bridge
+ opencv-python
+ ament_copyright
+ ament_flake8
+ ament_pep257
+ python3-pytest
+
+ ament_python
+
+
diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/resource/saltybot_photo_capture b/jetson/ros2_ws/src/saltybot_photo_capture/resource/saltybot_photo_capture
new file mode 100644
index 0000000..e69de29
diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/saltybot_photo_capture/__init__.py b/jetson/ros2_ws/src/saltybot_photo_capture/saltybot_photo_capture/__init__.py
new file mode 100644
index 0000000..b6c548e
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_photo_capture/saltybot_photo_capture/__init__.py
@@ -0,0 +1 @@
+"""Photo capture service for SaltyBot (Issue #456)."""
diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/setup.cfg b/jetson/ros2_ws/src/saltybot_photo_capture/setup.cfg
new file mode 100644
index 0000000..002bb33
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_photo_capture/setup.cfg
@@ -0,0 +1,2 @@
+[develop]
+script_dir=$base/lib/saltybot_photo_capture/scripts
diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/setup.py b/jetson/ros2_ws/src/saltybot_photo_capture/setup.py
new file mode 100644
index 0000000..2c9b0d9
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_photo_capture/setup.py
@@ -0,0 +1,32 @@
+from setuptools import find_packages, setup
+import os
+from glob import glob
+
+package_name = 'saltybot_photo_capture'
+
+setup(
+ name=package_name,
+ version='0.1.0',
+ packages=find_packages(exclude=['test']),
+ data_files=[
+ ('share/ament_index/resource_index/packages',
+ ['resource/' + package_name]),
+ ('share/' + package_name, ['package.xml']),
+ (os.path.join('share', package_name, 'launch'),
+ glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
+ (os.path.join('share', package_name, 'config'),
+ glob(os.path.join('config', '*.yaml'))),
+ ],
+ install_requires=['setuptools'],
+ zip_safe=True,
+ maintainer='seb',
+ maintainer_email='seb@vayrette.com',
+ description='Photo capture service for SaltyBot (Issue #456)',
+ license='MIT',
+ tests_require=['pytest'],
+ entry_points={
+ 'console_scripts': [
+ 'photo_capture_node = saltybot_photo_capture.photo_capture_node:main',
+ ],
+ },
+)
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/.gitignore b/jetson/ros2_ws/src/saltybot_wifi_monitor/.gitignore
new file mode 100644
index 0000000..9d89d21
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/.gitignore
@@ -0,0 +1,8 @@
+build/
+install/
+log/
+.pytest_cache/
+__pycache__/
+*.pyc
+*.egg-info/
+.DS_Store
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/README.md b/jetson/ros2_ws/src/saltybot_wifi_monitor/README.md
new file mode 100644
index 0000000..f849dba
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/README.md
@@ -0,0 +1,101 @@
+# SaltyBot WiFi Mesh Handoff (Issue #458)
+
+Seamless WiFi AP roaming with automatic fallback to USB tethering.
+
+## Features
+
+- **Signal Monitoring**: Continuous WiFi signal strength tracking via iwconfig
+- **Auto-Roaming**: Seamless handoff to stronger AP when signal < -70dBm
+- **Gateway Ping**: Periodic connectivity verification to 8.8.8.8
+- **USB Tethering Fallback**: Auto-activate phone USB tether if WiFi offline >30s
+- **TTS Warnings**: Voice alerts for connectivity issues
+- **Coverage Mapping**: Logs all signal transitions for analysis
+- **wpa_supplicant Integration**: Native WiFi roaming support
+- **Status Publishing**: Real-time WiFi state on `/saltybot/wifi_state`
+
+## Setup
+
+### 1. WiFi Configuration
+
+Edit `/etc/wpa_supplicant/wpa_supplicant.conf`:
+
+```
+network={
+ ssid="SaltyLab"
+ psk="password"
+ bgscan="simple:30:-70:600"
+ ap_scan=1
+ priority=10
+}
+```
+
+### 2. Launch
+
+```bash
+ros2 launch saltybot_wifi_monitor wifi_monitor.launch.py
+```
+
+### 3. Monitor
+
+```bash
+ros2 topic echo /saltybot/wifi_state
+```
+
+## Configuration
+
+| Parameter | Default | Description |
+|-----------|---------|-------------|
+| `interface` | wlan0 | WiFi interface |
+| `roam_threshold_dbm` | -70 | Roaming signal threshold |
+| `offline_warning_timeout` | 30.0 | Timeout before USB fallback |
+| `target_ssid` | SaltyLab | Target mesh SSID |
+| `fallback_tether` | true | Enable USB tethering |
+
+## Roaming Behavior
+
+Automatic roaming when:
+1. Signal < -70dBm
+2. Stronger AP available (>5dBm better)
+3. wpa_supplicant performs seamless handoff
+4. No ROS message disruption
+
+## Fallback Behavior
+
+Automatic fallback when:
+1. Gateway ping fails for >30 seconds
+2. TTS warning published
+3. USB tethering activated
+4. Auto-deactivated when WiFi restored
+
+## Topics
+
+| Topic | Type | Description |
+|-------|------|-------------|
+| `/saltybot/wifi_state` | String | Current WiFi state |
+| `/saltybot/speech_text` | String | TTS warnings |
+| `/saltybot/wifi_cmd` | String | Control commands |
+
+## Coverage Log
+
+```bash
+tail -f /tmp/wifi_coverage.log
+```
+
+Output:
+```
+2026-03-05T09:15:23.456 | SSID:SaltyLab | Signal:-65dBm | Connected:true | Roaming:false
+2026-03-05T09:15:45.789 | SSID:SaltyLab-5G | Signal:-62dBm | Connected:true | Roaming:true
+```
+
+## Issue #458 Completion
+
+✅ WiFi signal monitoring (iwconfig/nmcli)
+✅ WiFiState.msg interface
+✅ Auto-roam at -70dBm
+✅ Seamless wpa_supplicant handoff
+✅ Gateway ping verification
+✅ USB tethering fallback
+✅ TTS warnings (offline >30s)
+✅ Coverage logging + AP transitions
+✅ Configurable parameters
+✅ Manual control commands
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/config/wifi_monitor.yaml b/jetson/ros2_ws/src/saltybot_wifi_monitor/config/wifi_monitor.yaml
new file mode 100644
index 0000000..4708bdf
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/config/wifi_monitor.yaml
@@ -0,0 +1,9 @@
+wifi_monitor_node:
+ ros__parameters:
+ interface: wlan0
+ roam_threshold_dbm: -70
+ gateway_check_interval: 5.0
+ offline_warning_timeout: 30.0
+ target_ssid: "SaltyLab"
+ fallback_tether: true
+ coverage_log_file: "/tmp/wifi_coverage.log"
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/launch/wifi_monitor.launch.py b/jetson/ros2_ws/src/saltybot_wifi_monitor/launch/wifi_monitor.launch.py
new file mode 100755
index 0000000..7ded212
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/launch/wifi_monitor.launch.py
@@ -0,0 +1,20 @@
+#!/usr/bin/env python3
+from launch import LaunchDescription
+from launch_ros.actions import Node
+from launch.actions import DeclareLaunchArgument
+from launch.substitutions import LaunchConfiguration
+
+def generate_launch_description():
+ interface_arg = DeclareLaunchArgument('interface', default_value='wlan0', description='WiFi interface')
+ roam_threshold_arg = DeclareLaunchArgument('roam_threshold_dbm', default_value='-70', description='Roaming threshold (dBm)')
+ target_ssid_arg = DeclareLaunchArgument('target_ssid', default_value='SaltyLab', description='Target SSID')
+ fallback_tether_arg = DeclareLaunchArgument('fallback_tether', default_value='true', description='Enable USB tethering fallback')
+
+ wifi_monitor_node = Node(
+ package='saltybot_wifi_monitor',
+ executable='wifi_monitor',
+ name='wifi_monitor_node',
+ parameters=[{'interface': LaunchConfiguration('interface'), 'roam_threshold_dbm': LaunchConfiguration('roam_threshold_dbm'), 'target_ssid': LaunchConfiguration('target_ssid'), 'fallback_tether': LaunchConfiguration('fallback_tether')}],
+ output='screen',
+ )
+ return LaunchDescription([interface_arg, roam_threshold_arg, target_ssid_arg, fallback_tether_arg, wifi_monitor_node])
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/package.xml b/jetson/ros2_ws/src/saltybot_wifi_monitor/package.xml
new file mode 100644
index 0000000..1db076c
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/package.xml
@@ -0,0 +1,20 @@
+
+
+
+ saltybot_wifi_monitor
+ 0.1.0
+ WiFi mesh handoff and monitoring for SaltyBot. Seamless AP roaming, signal tracking, USB tethering fallback, and coverage logging.
+ seb
+ MIT
+ rclpy
+ std_msgs
+ saltybot_wifi_msgs
+ python3-launch-ros
+ ament_copyright
+ ament_flake8
+ ament_pep257
+ python3-pytest
+
+ ament_python
+
+
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/resource/saltybot_wifi_monitor b/jetson/ros2_ws/src/saltybot_wifi_monitor/resource/saltybot_wifi_monitor
new file mode 100644
index 0000000..e69de29
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/saltybot_wifi_monitor/__init__.py b/jetson/ros2_ws/src/saltybot_wifi_monitor/saltybot_wifi_monitor/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/saltybot_wifi_monitor/wifi_monitor_node.py b/jetson/ros2_ws/src/saltybot_wifi_monitor/saltybot_wifi_monitor/wifi_monitor_node.py
new file mode 100644
index 0000000..d854c1c
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/saltybot_wifi_monitor/wifi_monitor_node.py
@@ -0,0 +1,200 @@
+#!/usr/bin/env python3
+import rclpy
+from rclpy.node import Node
+from std_msgs.msg import String
+import subprocess
+import time
+import re
+from datetime import datetime
+
+class WiFiMonitorNode(Node):
+ def __init__(self):
+ super().__init__('wifi_monitor_node')
+ self.declare_parameter('interface', 'wlan0')
+ self.declare_parameter('roam_threshold_dbm', -70)
+ self.declare_parameter('gateway_check_interval', 5.0)
+ self.declare_parameter('offline_warning_timeout', 30.0)
+ self.declare_parameter('target_ssid', 'SaltyLab')
+ self.declare_parameter('fallback_tether', True)
+ self.declare_parameter('coverage_log_file', '/tmp/wifi_coverage.log')
+
+ self.interface = self.get_parameter('interface').value
+ self.roam_threshold = self.get_parameter('roam_threshold_dbm').value
+ self.gateway_interval = self.get_parameter('gateway_check_interval').value
+ self.offline_timeout = self.get_parameter('offline_warning_timeout').value
+ self.target_ssid = self.get_parameter('target_ssid').value
+ self.fallback_tether = self.get_parameter('fallback_tether').value
+ self.log_file = self.get_parameter('coverage_log_file').value
+
+ self.current_ssid = ""
+ self.current_signal_dbm = -100
+ self.connected = False
+ self.roaming = False
+ self.last_gateway_ping = time.time()
+ self.offline_start = None
+ self.tether_active = False
+
+ self.wifi_state_pub = self.create_publisher(String, '/saltybot/wifi_state', 10)
+ self.warning_pub = self.create_publisher(String, '/saltybot/speech_text', 10)
+ self.create_subscription(String, '/saltybot/wifi_cmd', self.cmd_callback, 10)
+
+ self.monitor_timer = self.create_timer(1.0, self.monitor_loop)
+ self.enable_roaming()
+ self.get_logger().info("WiFi monitor initialized")
+
+ def enable_roaming(self):
+ try:
+ subprocess.run(["wpa_cli", "-i", self.interface, "set_network", "0", "bgscan", '"simple:30:-70:600"'], capture_output=True, timeout=5)
+ self.get_logger().info("Roaming enabled")
+ except Exception as e:
+ self.get_logger().warn(f"Roaming setup: {e}")
+
+ def scan_aps(self):
+ try:
+ result = subprocess.run(["nmcli", "dev", "wifi", "list", "--rescan", "auto"], capture_output=True, text=True, timeout=10)
+ aps = {}
+ for line in result.stdout.split('\n')[1:]:
+ if not line.strip():
+ continue
+ parts = line.split()
+ if len(parts) >= 7:
+ ssid = parts[1]
+ signal = int(parts[6])
+ aps[ssid] = signal
+ return aps
+ except Exception as e:
+ self.get_logger().debug(f"Scan error: {e}")
+ return {}
+
+ def get_wifi_status(self):
+ try:
+ result = subprocess.run(["iwconfig", self.interface], capture_output=True, text=True, timeout=5)
+ status = {'connected': False, 'ssid': '', 'signal_dbm': -100, 'ap_addr': '', 'link_quality': 0, 'tx_rate': 0, 'rx_rate': 0}
+ output = result.stdout
+ ssid_match = re.search(r'ESSID:"([^"]*)"', output)
+ if ssid_match:
+ status['ssid'] = ssid_match.group(1)
+ status['connected'] = len(status['ssid']) > 0
+ signal_match = re.search(r'Signal level[=:\s]*(-?\d+)', output)
+ if signal_match:
+ status['signal_dbm'] = int(signal_match.group(1))
+ ap_match = re.search(r'Access Point:\s*([0-9A-Fa-f:]+)', output)
+ if ap_match:
+ status['ap_addr'] = ap_match.group(1)
+ quality_match = re.search(r'Link Quality[=:\s]*(\d+)', output)
+ if quality_match:
+ status['link_quality'] = int(quality_match.group(1))
+ return status
+ except Exception as e:
+ self.get_logger().error(f"iwconfig error: {e}")
+ return None
+
+ def gateway_ping(self):
+ try:
+ result = subprocess.run(["ping", "-c", "1", "-W", "2", "8.8.8.8"], capture_output=True, timeout=5)
+ return result.returncode == 0
+ except:
+ return False
+
+ def activate_tether(self):
+ if not self.fallback_tether or self.tether_active:
+ return
+ try:
+ self.get_logger().warn("Activating USB tethering fallback")
+ subprocess.run(["nmcli", "device", "connect", "usb0"], capture_output=True, timeout=10)
+ self.tether_active = True
+ except Exception as e:
+ self.get_logger().error(f"Tether activation failed: {e}")
+
+ def deactivate_tether(self):
+ if not self.tether_active:
+ return
+ try:
+ subprocess.run(["nmcli", "device", "disconnect", "usb0"], capture_output=True, timeout=10)
+ self.tether_active = False
+ except Exception as e:
+ self.get_logger().debug(f"Tether deactivation: {e}")
+
+ def check_roaming_needed(self):
+ if self.current_signal_dbm < self.roam_threshold:
+ aps = self.scan_aps()
+ for ssid, signal in aps.items():
+ if ssid == self.target_ssid and signal > self.current_signal_dbm + 5:
+ self.get_logger().info(f"Roaming: {ssid} ({signal}dBm) > current ({self.current_signal_dbm}dBm)")
+ self.roaming = True
+ return True
+ return False
+
+ def log_coverage(self):
+ try:
+ with open(self.log_file, 'a') as f:
+ timestamp = datetime.now().isoformat()
+ f.write(f"{timestamp} | SSID:{self.current_ssid} | Signal:{self.current_signal_dbm}dBm | Connected:{self.connected} | Roaming:{self.roaming}\n")
+ except Exception as e:
+ self.get_logger().debug(f"Log error: {e}")
+
+ def publish_state(self):
+ msg = String()
+ msg.data = f"ssid:{self.current_ssid}|signal:{self.current_signal_dbm}dBm|connected:{self.connected}|roaming:{self.roaming}|tether:{self.tether_active}"
+ self.wifi_state_pub.publish(msg)
+
+ def cmd_callback(self, msg):
+ if msg.data == "rescan":
+ self.get_logger().info("WiFi rescan requested")
+ self.scan_aps()
+ elif msg.data == "enable_tether":
+ self.activate_tether()
+ elif msg.data == "disable_tether":
+ self.deactivate_tether()
+
+ def monitor_loop(self):
+ status = self.get_wifi_status()
+ if status is None:
+ return
+
+ prev_ssid = self.current_ssid
+ prev_signal = self.current_signal_dbm
+ prev_connected = self.connected
+
+ self.current_ssid = status['ssid']
+ self.current_signal_dbm = status['signal_dbm']
+ self.connected = status['connected']
+
+ if self.current_ssid != prev_ssid:
+ self.get_logger().info(f"AP change: {prev_ssid} → {self.current_ssid}")
+ self.log_coverage()
+
+ if abs(self.current_signal_dbm - prev_signal) >= 5:
+ self.log_coverage()
+
+ if self.gateway_ping():
+ self.last_gateway_ping = time.time()
+ self.offline_start = None
+ if self.tether_active:
+ self.deactivate_tether()
+ else:
+ if self.offline_start is None:
+ self.offline_start = time.time()
+ offline_time = time.time() - self.offline_start
+ if offline_time > self.offline_timeout:
+ warning = String()
+ warning.data = "Warning: Lost WiFi connectivity. Activating USB tethering."
+ self.warning_pub.publish(warning)
+ self.activate_tether()
+
+ self.check_roaming_needed()
+ self.publish_state()
+
+def main(args=None):
+ rclpy.init(args=args)
+ node = WiFiMonitorNode()
+ try:
+ rclpy.spin(node)
+ except KeyboardInterrupt:
+ pass
+ finally:
+ node.destroy_node()
+ rclpy.shutdown()
+
+if __name__ == '__main__':
+ main()
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/setup.cfg b/jetson/ros2_ws/src/saltybot_wifi_monitor/setup.cfg
new file mode 100644
index 0000000..c05f6f7
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/setup.cfg
@@ -0,0 +1,5 @@
+[develop]
+script-dir=$base/lib/saltybot_wifi_monitor
+[egg_info]
+tag_build =
+tag_date = 0
diff --git a/jetson/ros2_ws/src/saltybot_wifi_monitor/setup.py b/jetson/ros2_ws/src/saltybot_wifi_monitor/setup.py
new file mode 100644
index 0000000..b138ff8
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_monitor/setup.py
@@ -0,0 +1,27 @@
+from setuptools import setup
+import os
+from glob import glob
+package_name = 'saltybot_wifi_monitor'
+setup(
+ name=package_name,
+ version='0.1.0',
+ packages=[package_name],
+ data_files=[
+ ('share/ament_index/resource_index/packages', ['resource/' + package_name]),
+ ('share/' + package_name, ['package.xml']),
+ (os.path.join('share', package_name, 'launch'), glob('launch/*.py')),
+ (os.path.join('share', package_name, 'config'), glob('config/*.yaml')),
+ ],
+ install_requires=['setuptools'],
+ zip_safe=True,
+ maintainer='seb',
+ maintainer_email='seb@vayrette.com',
+ description='WiFi mesh handoff + USB tethering fallback',
+ license='MIT',
+ tests_require=['pytest'],
+ entry_points={
+ 'console_scripts': [
+ 'wifi_monitor = saltybot_wifi_monitor.wifi_monitor_node:main',
+ ],
+ },
+)
diff --git a/jetson/ros2_ws/src/saltybot_wifi_msgs/CMakeLists.txt b/jetson/ros2_ws/src/saltybot_wifi_msgs/CMakeLists.txt
new file mode 100644
index 0000000..b69f042
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_msgs/CMakeLists.txt
@@ -0,0 +1,14 @@
+cmake_minimum_required(VERSION 3.8)
+project(saltybot_wifi_msgs)
+if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
+ add_compile_options(-Wall -Wextra -Wpedantic)
+endif()
+find_package(ament_cmake REQUIRED)
+find_package(std_msgs REQUIRED)
+find_package(builtin_interfaces REQUIRED)
+find_package(rosidl_default_generators REQUIRED)
+rosidl_generate_interfaces(${PROJECT_NAME}
+ "msg/WiFiState.msg"
+ DEPENDENCIES std_msgs builtin_interfaces
+)
+ament_package()
diff --git a/jetson/ros2_ws/src/saltybot_wifi_msgs/msg/WiFiState.msg b/jetson/ros2_ws/src/saltybot_wifi_msgs/msg/WiFiState.msg
new file mode 100644
index 0000000..4f0a022
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_msgs/msg/WiFiState.msg
@@ -0,0 +1,13 @@
+std_msgs/Header header
+string ssid
+int32 signal_dbm
+bool connected
+uint32 latency_ms
+string ap_addr
+uint32 frequency_mhz
+uint32 link_quality
+uint32 tx_rate_mbps
+uint32 rx_rate_mbps
+bool roaming
+string[] available_aps
+int32[] available_signal_dbm
diff --git a/jetson/ros2_ws/src/saltybot_wifi_msgs/package.xml b/jetson/ros2_ws/src/saltybot_wifi_msgs/package.xml
new file mode 100644
index 0000000..4e28d77
--- /dev/null
+++ b/jetson/ros2_ws/src/saltybot_wifi_msgs/package.xml
@@ -0,0 +1,16 @@
+
+
+
+ saltybot_wifi_msgs
+ 0.1.0
+ ROS2 message definitions for WiFi monitoring and mesh handoff.
+ seb
+ MIT
+ ament_cmake
+ std_msgs
+ builtin_interfaces
+ rosidl_interface_packages
+
+ ament_cmake
+
+