├── .gitignore ├── .travis.yml ├── README.md ├── laptop_battery_monitor ├── CHANGELOG.rst ├── CMakeLists.txt ├── package.xml └── scripts │ └── laptop_battery.py ├── libsensors_monitor ├── CHANGELOG.rst ├── CMakeLists.txt ├── include │ └── libsensors_monitor │ │ └── libsensors_chip.h ├── package.xml └── src │ ├── libsensors_chip.cpp │ └── libsensors_monitor.cpp └── linux_peripheral_interfaces ├── CHANGELOG.rst ├── CMakeLists.txt └── package.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/README.md -------------------------------------------------------------------------------- /laptop_battery_monitor/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/laptop_battery_monitor/CHANGELOG.rst -------------------------------------------------------------------------------- /laptop_battery_monitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/laptop_battery_monitor/CMakeLists.txt -------------------------------------------------------------------------------- /laptop_battery_monitor/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/laptop_battery_monitor/package.xml -------------------------------------------------------------------------------- /laptop_battery_monitor/scripts/laptop_battery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/laptop_battery_monitor/scripts/laptop_battery.py -------------------------------------------------------------------------------- /libsensors_monitor/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/libsensors_monitor/CHANGELOG.rst -------------------------------------------------------------------------------- /libsensors_monitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/libsensors_monitor/CMakeLists.txt -------------------------------------------------------------------------------- /libsensors_monitor/include/libsensors_monitor/libsensors_chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/libsensors_monitor/include/libsensors_monitor/libsensors_chip.h -------------------------------------------------------------------------------- /libsensors_monitor/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/libsensors_monitor/package.xml -------------------------------------------------------------------------------- /libsensors_monitor/src/libsensors_chip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/libsensors_monitor/src/libsensors_chip.cpp -------------------------------------------------------------------------------- /libsensors_monitor/src/libsensors_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/libsensors_monitor/src/libsensors_monitor.cpp -------------------------------------------------------------------------------- /linux_peripheral_interfaces/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/linux_peripheral_interfaces/CHANGELOG.rst -------------------------------------------------------------------------------- /linux_peripheral_interfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/linux_peripheral_interfaces/CMakeLists.txt -------------------------------------------------------------------------------- /linux_peripheral_interfaces/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-drivers/linux_peripheral_interfaces/HEAD/linux_peripheral_interfaces/package.xml --------------------------------------------------------------------------------