Tags:
tag this topic
create new tag
view all tags
---+ A serial protocol to control the movement of the robot. ---++ Setting up the HC-05 as a master Before being able to send any message from the Arduino Nano, acting as the controller, to the Arduino Uno, controlling the DC motors, the Bluetooth connection must be established. For this to happed we must first configure the HC-05 as a Bluetooth master and tell it with which Bluetooth slave (its Bluetooth address) to communicate. I find the HC-06 address with the PC using _bluetoothctl_ to be 00:21:13:00:ba:68. To put the HC-05 into AT mode, allowing to configure its, the small pushbutton must be pressed while power is applied to the module. It then blinks at ~ 2 Hz indicating that it has entered AT mode and it communicates with its serial line at 38400 Baud. Here are the [[AT mode commands]] and the answers from the HC-05 module when setting it up as master, with 38400Baud, 1 stop bit, no parity and asking it to pair itself with the HC-06 at the address given above. Once paired, both modules send double blinks with a frequency of ~ 2 Hz. Once the Bluetooth connection is setup we can think about the a communication protocol between the two Arduinos. Since both micro-controllers see the connection as a simple serial line it seems evident to send data in ASCII format which allows to easily read what is sent and what is received on the other side. The protocol has the following form: <literal> F:0x___,B:0x___,L:0x___,R:0x___,C:0x___</literal> where F stands for forward, B for backward, L for left, R for right and C for checksum. The <i>___</i> replace 3 digit hex numbers. ---++ The joystick The joystick consists of 2 potentiometers which are connected to 2 analog input on the Arduino Nano and which therefore deliver 2 values in the range of 0..1023 (the Arduino ADCs have 10 bit resolution. These two 10 bit values must now be translated into four 9 bit values describing the motor movement forward, backward, left and right. The figure below shows that for values above the mid-point (~512) the midpoint value must be subtracted to get the motor value while for values below the mid-point the motor value is given by mid-point-joystick value. <img alt="joystick2motor.png" height="373" src="%ATTACHURL%/joystick2motor.png" title="joystick2motor.png" width="418" /> The calculated values are converted into 3 hex characters and inserted into the protocol string before it is sent to the other side. A checksum is calculated by summing all characters up to C:0x (included) and added as the last 3 characters. The strategy for the development of small functions implementing the above steps is described in the [[protocol recipe]]. -- %USERSIG{UliRaich - 2017-11-21}% ---++ Comments %COMMENT%
Attachments
Attachments
Topic attachments
I
Attachment
History
Action
Size
Date
Who
Comment
png
joystick2motor.png
r1
manage
13.4 K
2017-11-21 - 15:01
UnknownUser
E
dit
|
A
ttach
|
Watch
|
P
rint version
|
H
istory
: r1
|
B
acklinks
|
V
iew topic
|
Ra
w
edit
|
M
ore topic actions
Topic revision: r1 - 2017-11-21
-
uli
Home
Site map
AFNOG web
Embedded_Systems web
IoT_Course_English web
IoT_Course_French web
Main web
Sandbox web
TWiki web
Embedded_Systems Web
Create New Topic
Index
Search
Changes
Notifications
RSS Feed
Statistics
Preferences
P
P
P
View
Raw View
Print version
Find backlinks
History
More topic actions
Edit
Raw edit
Attach file or image
Edit topic preference settings
Set new parent
More topic actions
Account
Log In
Register User
E
dit
A
ttach
Copyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback