File size: 971 Bytes
3aea7c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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
// Import all functions from the new scsServoSDK module
import {
  connect,
  disconnect,
  readPosition,
  readBaudRate,
  readMode,
  writePosition,
  writeTorqueEnable,
  writeAcceleration,
  setWheelMode,
  setPositionMode,
  writeWheelSpeed,
  syncReadPositions,
  syncWritePositions,
  syncWriteWheelSpeed, // Import the new function
  setBaudRate,
  setServoId,
} from "./scsServoSDK.mjs";

// Create an object to hold all the SCS servo functions
export const scsServoSDK = {
  connect,
  disconnect,
  readPosition,
  readBaudRate,
  readMode,
  writePosition,
  writeTorqueEnable,
  writeAcceleration,
  setWheelMode,
  setPositionMode,
  writeWheelSpeed,
  syncReadPositions,
  syncWritePositions,
  syncWriteWheelSpeed, // Add the new function to the export
  setBaudRate,
  setServoId,
};

// Future: You can add exports for other servo types here, e.g.:
// export { stsServoSDK } from './stsServoSDK.mjs';
// export { smsServoSDK } from './smsServoSDK.mjs';