Changes for page LSS-PRO Mechanical
Last modified by Eric Nantel on 2024/07/25 07:21
Change comment: Rollback to version 28.1
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,69 +1,80 @@ 1 -{{warningBox warningText="More information coming soon"/}} 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 -(% class="wikigeneratedid" id="HTableofContents" %) 11 -**Page Contents** 12 - 13 -{{toc depth="3"/}} 14 - 15 -|(% colspan="2" %)((( 16 -= Mounting Points = 17 -))) 18 -|(% style="width:350px" %) 19 -|(% rowspan="2" style="width:25%" %)[[image:LSS-P-S1-Mountings.png]] 20 -|((( 21 -Six equally space M4 threaded holes on a 23mm diameter circle with a depth of 5mm 22 - 23 -Lite gearbox specs 24 - 25 -* Nominal rotational torque: 31 Nm (3.2 Kg-cm) 26 -* Allowable peak torque (start / stop): 51 Nm (5.2 Kg-cm) 27 -* Max Instantaneous Torque: 70Nm 28 -* Basic static rated load: 6070 Nm 29 -* Permissible moment load: 41 Nm 30 -* Teeth gap: 10 arcsec 31 -* Grease: wave gear specific 32 -))) 33 -|(% rowspan="2" style="width:350px" %)[[image:LSS-P-S1-Mountings.png]] 34 -| 35 -|(% rowspan="2" style="width:350px" %)[[image:LSS-P-S1-Mountings.png]] 36 -| 37 -|(% colspan="2" style="width:350px" %)((( 38 -== Case == 39 -))) 40 -|(% style="width:350px" %)[[image:LSS-P-S1-Case.png]]|((( 41 -Loren Ipsum 42 -))) 43 -|(% colspan="2" style="width:350px" %)((( 44 -== RGB LED == 45 -))) 46 -|(% style="text-align:center; width:350px" %) |((( 47 -Loren Ipsum 48 -))) 49 -|(% colspan="2" style="width:350px" %)((( 50 -== Connector == 51 -))) 52 -|(% style="text-align:center; width:350px" %) |Loren Ipsum 53 -|(% colspan="2" style="width:350px" %)((( 54 -== Button == 55 -))) 56 -|(% style="text-align:center; width:350px" %) |Loren Ipsum 57 -|(% colspan="2" style="width:350px" %)((( 58 -== Gearing == 59 -))) 60 -|(% style="text-align:center; width:350px" %) |Loren Ipsum 61 -|(% colspan="2" style="width:350px" %)((( 62 -== Stepper Motor == 63 -))) 64 -|(% style="text-align:center; width:350px" %) |Loren Ipsum 65 - 66 -= Dimensions = 67 - 68 -(% style="width:700px" %) 69 -|(% style="width:350px" %) | 1 +{{html}} 2 +<html> 3 +<head> 4 + <style> 5 + table { 6 + width: 100%; 7 + border-collapse: collapse; 8 + } 9 + 10 + th, td { 11 + padding: 8px; 12 + text-align: left; 13 + border-bottom: 1px solid #ddd; 14 + } 15 + 16 + /* Media query for mobile devices */ 17 + @media only screen and (max-width: 600px) { 18 + /* Stack the table columns vertically */ 19 + td { 20 + display: block; 21 + } 22 + 23 + /* Add spacing between stacked columns */ 24 + td:not(:first-child) { 25 + margin-top: 10px; 26 + } 27 + 28 + /* Hide table headers (th) */ 29 + th { 30 + display: none; 31 + } 32 + } 33 + </style> 34 +</head> 35 +<body> 36 + <table> 37 + <tbody> 38 + <tr> 39 + <td> 40 + <table> 41 + <thead> 42 + <tr> 43 + <th>Column 1</th> 44 + </tr> 45 + </thead> 46 + <tbody> 47 + <tr> 48 + <td>Data 1</td> 49 + </tr> 50 + <tr> 51 + <td>Data 3</td> 52 + </tr> 53 + <!-- Add more rows as needed --> 54 + </tbody> 55 + </table> 56 + </td> 57 + <td> 58 + <table> 59 + <thead> 60 + <tr> 61 + <th>Column 2</th> 62 + </tr> 63 + </thead> 64 + <tbody> 65 + <tr> 66 + <td>Data 2</td> 67 + </tr> 68 + <tr> 69 + <td>Data 4</td> 70 + </tr> 71 + <!-- Add more rows as needed --> 72 + </tbody> 73 + </table> 74 + </td> 75 + </tr> 76 + </tbody> 77 + </table> 78 +</body> 79 +</html> 80 +{{/html}}