DSR-08 8 Channel Servo Controller

DSR-08 8 Channel Delta Servo Controller

DSR-08 8 Channel  Servo Controller
Harga: 750.000
Berbeda dengan versi sebelumnya DSR-30, Modul DSR-08 adalah merupakan modul servo controller yang memiliki feedback feature yaitu mendeteksi seberapa banyak motor berputar. Untuk mengamankan servo dari kerusakan akibat kegagalan mekanis juga tersedia feedback untuk menghentikan gerakan servo saat bagian ini aktif. Selain itu juga terdapat fitur untuk menggerakkan servo secara relatif dari posisi tertentu. Modul DSR-08 adalah merupakan modul DSR-30 dengan firmware DSR-08
Spesifikasi:
- 8 Channel Servo Controller
- 25 Step sudut servo
- Pengaturan kekuatan servo secara independent
- RS232 Port
- 8 Encoder Feedback input (kompatibel dengan DEC-xx)
- 8 Sensor Feedback (dapat dihubungkan dengan limit switch atau sensor arus)
- Posisi sudut dapat digerakkan secara relatif
- Baudrate 9600 bps 8N1

Paket terdiri dari:

- Modul DSR-30
- Kabel RS232
- CD
- User Manual

DSR-30 30 Channel Servo Controller

DSR-30 30 Channel Delta Servo Controller

DSR-30 30 Channel Servo Controller
Harga: 675.000

DSR-30  Servo Control adalah sebuah modul pengendali motor servo melalui port serial. Motor servo diatur gerakannya dengan menggunakan PWM di mana posisi dari servo ditentukan oleh lebar pulsa PWM tersebut. Pada aplikasi-aplikasi mekanis seperti pada robot seringkali dibutuhkan proses penggerakkan beberapa motor servo sekaligus. Hal ini akan cukup rumit bila dilakukan oleh sebuah mikrokontroler di mana mikrokontroler tersebut masih akan dikembangkan untuk fungsi-fungsi lain dari robotik.
DSR-30 yang memiliki 30 kanal Servo sehingga dapat mengatur posisi 30 motor servo sekaligus melalui data-data yang dikirim pada port serial akan sangat membantu dalam hal ini. Sistem mikrokontroler utama hanya cukup mengirimkan perintah-perintah yang merupakan posisi tiap-tiap servo.
Selain mengatur posisi servo juga terdapat perintah untuk meminta posisi servo saat ini.

Spesifikasi:
- 30 Kanal Servo
- Dapat mengetahui nilai PWM dari tiap servo
- UART TTL
- PCB Through hole

Paket terdiri dari:
- Modul DSR-30
- Kabel RS232
- CD
- User Manual

p.Brain-u24 with HexEngine Hexapod Control Firmware

p.Brain-u24 with HexEngine Hexapod Control Firmware    Harga: 2.300.000
Modul mikrokontroler untuk Kit Robot Hexapod
Spesifikasi :
- Telah dilengkapi dengan firmware yang berisi rutin2 untuk menggerakan robot hexapod
- Berbasis mikrokontroler 16-bit dsPIC33F
- Memiliki 24 kanal PWM untuk mengendalikan motor servo 3-pin
- Memiliki antarmuka : UART TTL/RS-232, I2C
- Memiliki I/O : tegangan analog (ADC), digital I/O
- Terintegrasi dengan regulator internal tegangan 3,3VDC
- Pengaturan gerakan hexapod melalui p.Brain-u24 dapat mengguakan program terminal di PC ataupun dengan menggunakan mikrokontroler.
Lynxmotion SSC-32 Sequencer Software    Harga: 1.250.000                                   datasheet

Software editor untuk SSC-32 Servo Controller
Spesifikasi :
- Mampu mengatur gerakan 32 servo melalui modul SSC-32 Servo Controller
- Terdapat fitur untuk melakukan gerakan sekuen untuk gerakan robot, seperti gerakan robot humanoid ataupun hexapod
- Mampu membuat kode program dalam bahasa Basic untuk mikrokontroler Basic Stamp ataupun Basic Atom yang akan terhubung ke SSC-32 Servo Controller
- Terdapat fitur untuk update firmware pada SSC-32 Servo Controller
- Kompatibel dengan OS Win 95/98SE/2000/XP/Vista

Propeller Servo Controller USB

Propeller Servo Controller USB                            Harga : 990.000                    datasheet

Modul controller untuk 16 motor servo
Spesifikasi :
- Catu daya : 5VDC (board only)
- Memerlukan catu daya terpisah untuk Motor Servo
- Dapat dikontrol dengan menggunakan PC ataupun mikrokontroler
- Firmware open source
- Antamuka : USB, Asynchronous Serial TTL
- Menggunakan chipset FTDI untuk konverter USB to Serial
- Mampu cascade 2 board untuk mengontrol 32 motor servo (@ dihubungkan ke mirkokontroler)
- Kompatibel penuh dengan Motor servo Parallax

Lynxmotion SSC-32 Servo Controller

Lynxmotion SSC-32 Servo Controller              Harga : 1.500.000                     datasheet

Modul pengendali motor standar servo dari Lynxmotion
Spesifikasi :
- Berbasiskan ATmega168-20PU
- Mampu mengedalikan 32 motor servo
- Antarmuka : UART RS232/TTL
- Mendukung servo Futaba dan Hitec
- Tipe servo : Standar Servo (180 ° )
- Resolusi sudut pergerakan servo : 1uS / 0.9 °
- Resoluisi kecepatan pergerakan servo : 1uS /Second
- Terdapat rutin-rutin siap pakai untuk menggerakan 12 motor servo pada robot Hexapod

ATMEGA1280 SPIDER Controller (Driving up to 48 Servos!)

 ATMEGA1280 SPIDER Controller (Driving up to 48 Servos!)

ATMEGA1280 SPIDER Controller (Driving up to 48 Servos!)
Item No. : MT0203401
Harga; 2.000.000
1. Introductions :
This tip/walkthrough will work with all Arduino Mega PCBs and their clones. I have found the instructions for the servo command to be a little vague so in this tip I will share my research.

The Spider controller is an Arduino Mega compatible PCB. Unlike the Arduino Mega the Spider controller was designed specifically to drive a large number servos. This made it ideal for this tip/walkthrough.

The Arduino servo library is capable of driving up to 48 servos. After a bit of experimenting I found that the servos can be assigned to any of the digital pins from D0 to D63. For those thinking that the digital pins only go to D53, analog pins A0 - A9 are digital pins D54 - D63.

For those who have never used the servo command before I will start at the beginning using the attached code as my example. The first line of the code "#include " means that the instructions needed to generate the servo control signals will be included in the code to be uploaded to the microcontroller.

Before the setup() function you must define your servos same as you define your global variables. I've simply called my servos s00 to s47. You should name your servos with descriptive names to make your program easier to read.

The Servo command uses a timer for each 12 servos used starting with Timer 5. As these timers are also used for commands like PWM you need to plan your pin assignments to avoid conflicts.

1   to 12 servos use timer   5         
disabling PWM on pins 44,45 and 46.

13 to 24 servos use timers 1 & 5    
disabling PWM on pins 11,12,44,45 and 46.

25 to 36 servos use timers 1, 4 & 5
disabling PWM on pins  6,7,8,11,12,44,45 and 46.

37 to 48 servos use timers 1,3,4&5
disabling PWM on pins 2,3,5,6,7,8,11,12,44,45 and 46.

Once you have defined your servos you need to attach them to the physical pins of the controller. In the setup() function you can attach your servos to any of your digital outputs. In my sample I have avoided digital pins 0 and 1 as they are used for serial communications. At this point even thought the servos have been attached to a pin they are not receiving any signals.

The first time you write to a servo using either the servo write() or writeMicrosecond() command the pin will be initialised and the servo will receive a control signal. depending on your application you may need to initialise the servos in the setup() function. In my example I initialise the servos in the loop() function.

2. Features :
• ATmega1280 MCU with 128K FLASH, 8K SRAM and 4K EEPROM
• Drive up to 48 servos
• 3A, 5V switch mode power supply
• Input voltage: 7V to 30V
• Arduino compatible
• 70 I/O pins terminated with a servo compatible 3 pin male header and a female header
• USB interface and ISP socket
• Power switch and reset button
• Pin spacing allows custom shields to be made using standard prototype PCB's
• Comes with Arduino bootloader installed
• 16x 10 bit analog inputs
• Up to 15x PWM outputs (depends on the number of servos in use)
• 4x serial ports (1 used by USB interface)
• 1x I²C interface
• Can drive up to 48 servos using the Arduino servo library

SD21 - 21 Channel Servo Driver Module (with SD-20)

 SD21 - 21 Channel Servo Driver Module (with SD-20)

Item No. : #MT0202701
SD21 - 21 Channel Servo Driver Module (with SD-20)
Harga : 1.500.000,-
The SD21 is a 21 channel servo controller module. It will drive up to 21 RC servo's and maintain a 20mS refresh rate, regardless of the number of servo's used or their positions (pulse widths). It will control both position and speed of the servo's. It's controlled by sending commands to the on-board PIC18F2220 over the I2C bus. There are 3 I2C connectors on the board, any one of which can be used to connect to your controller. Alternatively, many controllers such as the Picaxe, BS2p, Atom, BX-24 etc. can be fitted directly to the module, making this a great animatronics controller.





Standard SD21 - 21 Channel Servo Driver Module (
Item No. : #MT02027) :


Optional connection compatible controller (ex.
Basic Stamp BS2p):
Additional Information:
Additional application notes, schematics, and tech support can be found at Robot Electronics