CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2007
    Posts
    68

    Remote automation Control

    Hi All

    I have 2 devices

    An old IPAQ Pocket PC that runs Windows Mobile 4.2
    A Mini-ITX PC Running XP

    My IPAQ connects to my network via wireless

    My Mini-ITX PC is going to have an IR-Blaster setup which is going to control all my devices.

    What I would like to do is create a small controller program that runs on my IPAQ and a back end program on my Mini-ITX PC, so that when a particular control is selected on my IPAQ it sends the signal to my program on the Mini-ITX PC which inturns sends the correct IR signal to the device in question.

    Is this possible and if so can any of the gurus give me pointers on how to go about this?

    Cheers

    Dougie

  2. #2
    Join Date
    Feb 2000
    Location
    OH - USA
    Posts
    1,892

    Arrow Re: Remote automation Control

    You'll want to get familiar with the .NET compact framework.
    http://msdn.microsoft.com/en-us/netf.../aa497273.aspx

    You're probably best off running a webservice from your PC, and allowing the portable device to communicate with it. You could also setup some other type of communication protocol besides SOAP, like even a website. This way the device can communicate across HTTP with some simple POST/GET requests.

    Example:
    Code:
    http://mycomputer/control.aspx?function=change&what=channel&value=28
    On the receiving side, the IR blaster should have some type of API/SDK that you'll have to investigate.
    Good Luck,
    Craig - CRG IT Solutions - Microsoft Gold Partner

    -My posts after 08/2015 = .NET 4.x and Visual Studio 2015
    -My posts after 11/2011 = .NET 4.x and Visual Studio 2012
    -My posts after 02/2010 = .NET 4.0 and Visual Studio 2010
    -My posts after 12/2007 = .NET 3.5 and Visual Studio 2008
    -My posts after 04/2007 = .NET 3.0 and Visual Studio 2005
    -My posts before 04/2007 = .NET 1.1/2.0

    *I do not follow all threads, so if you have a secondary question, message me.

  3. #3
    Join Date
    Feb 2000
    Location
    OH - USA
    Posts
    1,892

    Arrow Re: Remote automation Control

    I'm also assuming that these devices are networked.
    Good Luck,
    Craig - CRG IT Solutions - Microsoft Gold Partner

    -My posts after 08/2015 = .NET 4.x and Visual Studio 2015
    -My posts after 11/2011 = .NET 4.x and Visual Studio 2012
    -My posts after 02/2010 = .NET 4.0 and Visual Studio 2010
    -My posts after 12/2007 = .NET 3.5 and Visual Studio 2008
    -My posts after 04/2007 = .NET 3.0 and Visual Studio 2005
    -My posts before 04/2007 = .NET 1.1/2.0

    *I do not follow all threads, so if you have a secondary question, message me.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured