IO Module
This class handles the whole communication with the Heliostat via a CAN Bus from Kvaser. The class initializes the motors and encoders and starts sending signals back and fourth to update the GUI class. The function that waits for incoming messages and proceeds them is run in a single Thread so that it doesn't affect the other ongoing functions. On this way it is possible to send and receive messages from the CAN Bus at the same time.
The commands that are given to the CAN Bus must be in Byte format. They are given as hexadecimal numbers. To find more information about the specific commands to move the motor and get the replies read the manual from the stepper motor. To get the specific CAN Bus communication protocoll for the rotatory encoders read the manual.
Additionally this class handles the information that the Q4_com_module gets from the 4Q sensor. This is better described on this site.
In the folling part the class itself is described in detail.
Class documentation
Bases: QObject
Class representing Input/Output operations for controlling motors and reading encoder values via a CAN Bus.
Attributes:
| Name | Type | Description |
|---|---|---|
fourq |
object
|
An object representing the class that handles the communication with the 4Q Sensor |
A |
int
|
Last known Azimuth position. |
E |
int
|
Last known elevation position. |
data |
dict
|
Dictionary for position data and data from the 4Q sensor |
FQ_out |
dict
|
Dictionary for storing raw output data from the 4Q sensor. |
motor_ID_A |
int
|
ID for Azimuth motor. |
motor_ID_E |
int
|
ID for Elevation motor. |
motor_reply_ID_E |
int
|
Reply ID for Elevation motor. |
motor_reply_ID_A |
int
|
Reply ID for Azimuth motor. |
enc_ID_E |
int
|
ID for Elevation encoder. |
enc_ID_A |
int
|
ID for Azimuth encoder. |
enc_SID_E |
int
|
Elevation encoder SID. |
enc_SID_A |
int
|
Azimuth encoder SID. |
N_no_answer |
dict
|
Dictionary to track no answer counts. |
good_to_send |
dict
|
Dictionary to track send statuses. |
status_reply |
dict
|
Dictionary to track reply statuses. |
M_status |
dict
|
Dictionary to track motor statuses. |
M_rep_C |
dict
|
Dictionary to track motor reply C. |
M_rep_M |
dict
|
Dictionary to track motor reply M. |
Enc_offset_A |
int
|
Offset for Azimuth encoder. |
Enc_offset_E |
int
|
Offset for Elevation encoder. |
scaler_enc |
float
|
Encoder scaler. |
scaler_step |
int
|
Step scaler. |
drehmatrix |
list
|
Rotation matrix. |
bus |
Bus
|
CAN bus interface. |
Source code in IO_module.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 | |
__init__(fourq)
Initialize the IO class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
fourq |
object
|
An object representing the class that handles the communication with the 4Q Sensor |
required |
Source code in IO_module.py
delete()
Calls the stop function of the encoder and shuts down the CAN bus interface
Returns:
| Type | Description |
|---|---|
|
None |
disable_power_off_at_zero_velocity()
Disable power off at zero velocity for a motor. !!!Attention with this settings!!! Study the manual before changing the power for the motor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
motor_ID |
int
|
Motor ID. |
required |
Source code in IO_module.py
get_4Q_data()
Gets the data from the 4Q sensor via the Q4_com_module
Returns:
| Type | Description |
|---|---|
|
numpy.ndarray: Transformed data. |
Source code in IO_module.py
getdata()
Get data from motors that are already processed.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
A dictionary containing motor data and positional data from the 4Q Sensor. |
Source code in IO_module.py
initialize_encoder(enc_SID)
Initialize an encoder.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
SID |
int
|
Encoder SID. |
required |
Source code in IO_module.py
initialize_motor_end_switches()
Disable motor end switches.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
motor_ID |
int
|
Motor ID. |
required |
Source code in IO_module.py
receive_fcn()
Function to receive CAN messages and process them.
This function continuously listens for CAN messages and updates motor data and statuses accordingly.
Returns:
| Type | Description |
|---|---|
|
None |
Raises:
| Type | Description |
|---|---|
CanError
|
If an error frame is detected during message reception. |
Source code in IO_module.py
request_manual_input()
Request manual input for motors to controll the Heliostat with the switches on the outside of the building.
Returns:
| Type | Description |
|---|---|
|
None |
Source code in IO_module.py
request_motor_data()
Request motor data.
Returns:
| Type | Description |
|---|---|
|
None |
Source code in IO_module.py
rotate_right()
This turns the motor to the right infinitely long
Source code in IO_module.py
send_data(M)
Send data to motors based on input values.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
M |
dict
|
A dictionary containing speed values for the motor. |
required |
Returns:
| Type | Description |
|---|---|
|
None |
Source code in IO_module.py
start_notifier()
Start the CAN bus notifier to receive messages asynchronously.
Returns:
| Type | Description |
|---|---|
|
None |
stop_encoder()
Sends stop commands to the encoder.
Returns:
| Type | Description |
|---|---|
|
None |