Controlar lector de discos IDE o SATA

Hola:

Desde el PC, puedo controlar mediante software con Visual C# 2013 abrir y cerrar la bandeja del lector. Su código es este.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using System.Runtime.InteropServices; // No olvidar.

namespace Lector_IDE
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        [DllImport("winmm.dll")]
        public static extern Int32 mciSendString(string lpstrCommand,
            StringBuilder lpstrReturnString, int uReturnLength, IntPtr hwndCallback);
        //Why did i put this here?
        StringBuilder rt = new StringBuilder(127);

        private void button_Abrir_Click(object sender, EventArgs e)
        {
            mciSendString("set CDAudio door open", rt, 127, IntPtr.Zero);
            label1.Text = "Abierto";
        }

        private void button_Cerrar_Click(object sender, EventArgs e)
        {
            mciSendString("set CDAudio door closed", rt, 127, IntPtr.Zero);
            label1.Text = "Cerrado";
        }
    }
}

Mi idea es controlar el lector, sea tecnología IDE o SATA solo con Arduino. Si alguien tiene experiencia sobre este campo, es muy bienvenida cualquier información para empezar.

Quiero hacer lo que hace este vídeo abajo o algo similar.

Saludo.

esto te servirá?
http://singlevalve.web.fc2.com/Atapiduino/atapiduino.htm

maxid:
esto te servirá?
DIY Arduino ATAPI CD-ROM controller

Muchas gracias, si, me servirá.

Ahora a estudiarlo.