id stringlengths 15 54 | text stringlengths 3 133k | title stringclasses 1
value |
|---|---|---|
arduino/wire_104.txt | In some situations, it can be helpful to set up two (or more!) Arduino boards
to share information with each other. In this example, two boards are
programmed to communicate with one another in a Controller Writer/Peripheral
Receiver configuration via the [ I2C synchronous serial protocol
](http://en.wikipedia.org/wiki... | |
arduino/howi2ccommunicationw_78.txt | [ 
](https://howtomechatronics.com/projects/diy-air-quality-monitor-
pm2-5-co2-voc-ozone-temp-hum-arduin... | |
arduino/howi2ccommunicationw_59.txt | [ What is MEMS? Accelerometer, Gyroscope & Magnetometer with Arduino
](https://howtomechatronics.com/how-it-works/electrical-engineering/mems-
accelerometer-gyrocope-magnetometer-arduino/) | |
arduino/6498_53.txt | Hi [ @Kei ](/u/kei) | |
arduino/ros2arduino_163.txt | ### Forks | |
arduino/6498_51.txt | -Nick | |
arduino/wire_128.txt | 58 0x00, 0x00, 0x00, 0x0c, 0x07, 0x80, 0xf0, 0x04, 0x18, 0xff, 0x88, 0x18, 0x1c, 0x00, 0x00, 0x00,
59 0x00, 0x00, 0x00, 0x1e, 0x0f, 0xf8, 0xff, 0x1e, 0x1c, 0xff, 0x9e, 0x1c, 0x7f, 0x00, 0x00, 0x00,
60 0x00, 0x00, 0x00, 0x1f, 0x0f, 0xfc, 0xff, 0x9e, 0x1c, 0xff, 0x9f, 0x1c, 0xff, 0x80, 0x00, 0x00... | |
arduino/howi2ccommunicationw_44.txt | 3 Axis Accelerometer Analog Devices ADXL345 0x53 [ Datasheet
](https://www.analog.com/media/en/technical-documentation/data-
sheets/ADXL345.pdf) | |
arduino/howi2ccommunicationw_28.txt | Next is the internal registers addressing. The internal registers are
locations in the slave’s memory containing various information or data. For
example the ADX345 Accelerometer has a unique device address and addition
internal registers addresses for the X, Y and Z axis. So if we want to read
the data of the X-axis, ... | |
arduino/wire_134.txt | #### License | |
arduino/ros2arduino_22.txt | # Search code, repositories, users, issues, pull requests... | |
arduino/ros2arduino_32.txt | Name | |
arduino/6498_30.txt | > I’ve got an initial draft of the interfaces already defined for a ROS Client
> Library for MicroControllers (rcluc) that has its own rmw abstraction layer
> to allow the DDS-XRCE implementation to be interchangeable and focuses on
> having no dynamic allocation. | |
arduino/howi2ccommunicationw_36.txt | Here’s how we will connect the boards. The Serial Clock pin of the Arduino
Board will be connected to the Serial Clock pins of the two breakout boards,
the same goes for the Serial Data pins and we will power the boards with the
Gnd and the 5V pin from the Arduino Board. Note here we are not using pull-up
resistors bec... | |
arduino/ros2arduino_142.txt | * An example reference file is as follows.
* ros2arduino.refs
<profiles>
<participant profile_name="ros2arduino_xml_node">
<rtps>
<name>ros2arduino_basic_node</name>
<builtin>
<domainId>0</dom... | |
arduino/wire_80.txt | \- Sets the timeout for transmissions in controller mode | |
arduino/ros2arduino_102.txt | * README
* Apache-2.0 license | |
arduino/ros2arduino_52.txt | # ROBOTIS-GIT/ros2arduino | |
arduino/6498_54.txt | Remember our microRTPS is now called micro-XRCE-DDS, and BTW, I am pleased to
announce today we launch our first non beta release, [ Micro XRCE-DDS 1.0.0
](https://github.com/eProsima/Micro-XRCE-DDS) . | |
arduino/ros2arduino_119.txt | * [ ROS2 ](https://index.ros.org/doc/ros2/Installation/)
* XRCE-DDS Agent
* [ Micro-XRCE-DDS Agent ](https://micro-xrce-dds.readthedocs.io/en/latest/installation.html#installing-the-agent-stand-alone) for FastRTPS | |
arduino/wire_38.txt | ### Breakout Boards | |
arduino/6498_12.txt | * **Build system** : for Arduino IDE’s compile method. ( [ @Ingo_Lutkebohle ](/u/ingo_lutkebohle) mentioned [ modm ](https://modm.io/) as one of the considerations.)
* S/W **architecture**
* Programming **language version**
* Etc… | |
arduino/wire_50.txt | STEMMA QT, on the other hand, doesn't have this. This lets you use both 3.3 V
and 5 V logic for modules. This also means that there is one more thing you
may need to consider when creating your circuit, but it also grants some more
flexibility in power and logic requirements. | |
arduino/wire_108.txt | **Peripheral Receiver Sketch** | |
arduino/ros2arduino_17.txt | * [ The ReadME Project GitHub community articles ](/readme) | |
arduino/6498_74.txt | Hi [ @nburek ](/u/nburek) . | |
arduino/wire_130.txt | #### Suggest changes | |
arduino/ros2arduino_67.txt | ### | |
arduino/howi2ccommunicationw_5.txt | # How I2C Communication Works? Arduino and I2C Tutorial | |
arduino/ros2arduino_147.txt | * [ Fast RTPS security documentation ](https://fast-rtps.docs.eprosima.com/en/latest/security.html#example-configuring-the-participant) | |
arduino/wire_22.txt | * What Is I2C?
* Arduino I2C Pins
* I2C Wiring
* Wire Library
* Examples | |
arduino/6498_36.txt |  Kei: | |
arduino/6498_22.txt | 4 Likes | |
arduino/howi2ccommunicationw_12.txt | ## Overview | |
arduino/wire_115.txt |
Copy
1#include "LSM6DS3.h"
2#include "Wire.h"
3
4//Create instance of Accelerometer class
5LSM6DS3 accelerometer(I2C_MODE, 0x6A);
6
7void setup() {
8 // put your setup code here, to run once:
9 Serial.begin(96... | |
arduino/6498_7.txt | > ros2arduino (using RTPS supporting XRCE such as microRTPS; note that this
> approach uses a different wire protocol from ROS 2 atop a full DDS/RTPS
> system)
>
> * supports TurtleBot3’s embedded system (OpenCR, it supports Arduino IDE)
> * supports Arduino MEGA, ZERO and other compatible microcontrollers
> * ma... | |
arduino/wire_125.txt |
Copy
1#include <Wire.h>
2#include <Adafruit_GFX.h>
3#include <Adafruit_SSD1306.h>
4
5Adafruit_SSD1306 display(128, 64, &Wire, -1);
6
7// The Arduino Logo in a bitmap format
8const uint8_t arduinoLogo[] = {
9 0x00, ... | |
arduino/ros2arduino_80.txt | [ .travis.yml ](/ROBOTIS-GIT/ros2arduino/blob/master/.travis.yml
".travis.yml") | |
arduino/ros2arduino_125.txt | * Serial
$ MicroXRCEAgent serial --dev /dev/ttyACM0 -b 115200 | |
makearobot/gadsource1gclidCjwKC_227.txt | [ November 27, 2022 at 8:34 am
](https://robotbox.net/roomba-j7-vs-j7/#comment-47487) | |
makearobot/gadsource1gclidCjwKC_59.txt | Mopping | |
makearobot/create3sim_11.txt | By Solution | |
makearobot/gadsource1gclidCjwKC_213.txt | ##### [ Roomba I6 vs J7 Comparison Review
](https://robotbox.net/roomba-i6-vs-j7/) | |
makearobot/gadsource1gclidCjwKC_58.txt | 1700 Pa | |
makearobot/create3sim_52.txt | # iRobotEducation/create3_sim | |
makearobot/gadsource1gclidCjwKC_30.txt | [ View on Amazon
](https://www.amazon.com/dp/B094NW318F?amp;linkCode=ogi&th=1&psc=1&tag=robotbox0c-20
"View on Amazon") | |
makearobot/create3sim_21.txt | Search or jump to... | |
makearobot/2_22.txt | | 2 | 848 | February 19, 2018
[ Frustrations With State Of Hobby ROS 2 Robotics
](https://discourse.ros.org/t/frustrations-with-state-of-hobby-
ros-2-robotics/35900) | |
makearobot/gadsource1gclidCjwKC_115.txt | Power suction | |
makearobot/gadsource1gclidCjwKC_181.txt | In terms of cleaning performance, the robot does a great job on all types of
bare floors and low pile carpets. It also handles pet messes satisfactorily. | |
makearobot/create3sim_145.txt | ## Package layout | |
makearobot/gadsource1gclidCjwKC_229.txt | Reply | |
makearobot/gadsource1gclidCjwKC_39.txt | * Roomba Spring Deals 2024
* Roomba J7 (7150)
* Roomba J7+ (7550)
* Comparison Table
* Which one to choose Roomba J7 or Roomba J7+?
* Roomba J7 vs. J7+ Comparison Review
* 1\. Design and Aesthetics
* 2\. Cleaning Performance
* 3\. Cleaning Test Results
* 4\. Battery and Runtime
... | |
makearobot/create3sim_155.txt | ### License | |
makearobot/gadsource1gclidCjwKC_208.txt | July 8, 2023 [ 18 ](https://robotbox.net/roomba-j7-vs-i7-comparison-
review/#comments) | |
makearobot/gadsource1gclidCjwKC_108.txt | Voice control | |
makearobot/gadsource1gclidCjwKC_228.txt | The questing is interesting, but I don’t see any problems with either thin
rugs or thick carpets. Roomba J7 works equally efficiently on both. You just
map the house in your app, and the map shows where the carpets are in your
house. There may be an issue with the adjustments, so you need to check it.
Even if you have ... | |
makearobot/ros2_34.txt |
$ ros2 param list
/motion_control:
max_speed
min_speed
qos_overrides./parameter_events.publisher.depth
qos_overrides./parameter_events.publisher.durability
qos_overrides./parameter_events.publisher.history
qos_overrides./parameter_events.publisher.reliability
... | |
makearobot/gadsource1gclidCjwKC_49.txt | [ 
](https://www.amazon.com/dp/B094NW318F?tag=robotbox0c-20&linkCode=ogi&th=1&psc=1
"iRobot Roomba j7 \(7150\)...") | |
makearobot/ros2_35.txt | qos_overrides./parameter_events.publisher.depth
qos_overrides./parameter_events.publisher.durability
qos_overrides./parameter_events.publisher.history
qos_overrides./parameter_events.publisher.reliability
use_sim_time
/ui_mgr:
lightring_led_brightness
qos_overrides./paramet... | |
makearobot/gadsource1gclidCjwKC_134.txt | Auto Dirt Disposal | |
makearobot/ros2_42.txt | 1. ROS 2 is governed by Open Robotics ↩ | |
makearobot/gadsource1gclidCjwKC_256.txt | subscribe | |
makearobot/create3sim_89.txt | |
### | |
makearobot/gadsource1gclidCjwKC_70.txt | brand new Genius Technology and PrecisionVision Navigation | |
makearobot/gadsource1gclidCjwKC_109.txt | Auto Dirt Disposal | |
makearobot/create3sim_135.txt | Create® 3 can be spawned in a demo world in Ignition and monitored through
RViz with | |
makearobot/gadsource1gclidCjwKC_151.txt | Robot vacuums are highly specialized. You will find robot vacuums for bare
floors, carpets, pet hair, etc. The Roomba J7 has been customized to handle
bare floors such as hardwood, tile, laminate, vinyl, and more. It is also
suitable for vacuuming low pile carpets. | |
makearobot/create3sim_9.txt | For | |
makearobot/create3sim_96.txt | [

](https://github.com/iRobotSTEM/create3_sim/actions/workflows/ci.yml) [

* [ Privacy ](https://docs.github.com/site-policy/privacy-policies/github-privacy-statement)
* [ Security ](/security)
* [ Status ](https://www.githubstatus.com/)
* [ Docs ](https://docs.github.com/)
* [ Contact ](https://... | |
makearobot/ros2_45.txt | Made with [ Material for MkDocs ](https://squidfunk.github.io/mkdocs-
material/) | |
makearobot/gadsource1gclidCjwKC_2.txt | * [ Robot vacuum cleaners ](https://robotbox.net/robot-vacuum-cleaners/)
* [ User’s guides ](https://robotbox.net/user-guid/)
* [ Models comparison ](https://robotbox.net/models-comparison/)
* [ Face to face comparison ](https://robotbox.net/compare/)
* [ Models review ](https://robotbox.net/robot-vac... | |
makearobot/gadsource1gclidCjwKC_131.txt | 3-4 hours | |
makearobot/create3sim_159.txt | ### Stars | |
makearobot/gadsource1gclidCjwKC_199.txt | Color: **White+Black** | |
makearobot/ros2_17.txt | You can see the ROS 2 topics exposed by the Create® 3 robot running the ` ros2
topic list ` command. | |
makearobot/create3sim_37.txt | [ Sign up
](/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-
name%3E%2F%3Crepo-name%3E&source=header-
repo&source_repo=iRobotEducation%2Fcreate3_sim) | |
makearobot/gadsource1gclidCjwKC_100.txt | brand new Genius Technology and PrecisionVision Navigation | |
makearobot/ros2_13.txt | # ROS 2 APIs | |
makearobot/2_11.txt | [ show post in topic ](/t/irobot-create-3-with-nav2/34025#post_2) | |
makearobot/create3sim_100.txt | Required dependencies: | |
makearobot/create3sim_25.txt | [ Search syntax tips ](https://docs.github.com/search-github/github-code-
search/understanding-github-code-search-syntax) | |
makearobot/gadsource1gclidCjwKC_182.txt | ### Is Roomba J7+ a Good Robot Vacuum? | |
makearobot/gadsource1gclidCjwKC_205.txt | ### Related Posts | |
makearobot/create3sim_35.txt | Cancel Create saved search | |
makearobot/create3sim_78.txt | [ irobot_create_ignition
](/iRobotEducation/create3_sim/tree/main/irobot_create_ignition
"irobot_create_ignition") | |
makearobot/gadsource1gclidCjwKC_118.txt | Brushes | |
makearobot/gadsource1gclidCjwKC_8.txt | Author: [ Richard Harrison ](https://robotbox.net/author/richard/) June 29,
2023 Last Update: April 10, 2024 | |
makearobot/create3sim_117.txt | ##### Empty world | |
makearobot/gadsource1gclidCjwKC_217.txt | [ January 18, 2022 at 6:08 pm
](https://robotbox.net/roomba-j7-vs-j7/#comment-32063) | |
makearobot/gadsource1gclidCjwKC_12.txt | Recently, iRobot unveiled two new robot vacuums, the [ Roomba J7
](https://robotbox.net/roomba-j7-vs-i7-comparison-review/) and Roomba J7+.
_The duo comes with several extras that make them a cut above the rest._
Unfortunately for buyers, it’s hard to tell the difference between the two,
but here at Robotbox, we have t... | |
makearobot/create3sim_39.txt | {{ message }} | |
makearobot/gadsource1gclidCjwKC_197.txt | [ SEE PRICE – Amazon.com
](https://www.amazon.com/dp/B09KBDK65M/?tag=robotbox0c-20) | |
makearobot/create3sim_166.txt | ## [ Releases ](/iRobotEducation/create3_sim/releases) | |
makearobot/create3sim_0.txt | Skip to content | |
makearobot/2_19.txt | [ TurtleBot ](/c/turtlebot/12) | |
makearobot/create3sim_14.txt | * [ Learning Pathways ](https://resources.github.com/learn/pathways/)
* [ White papers, Ebooks, Webinars ](https://resources.github.com/)
* [ Customer Stories ](/customer-stories)
* [ Partners ](https://partner.github.com/) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.