element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Robust PC-RPI IOT Platform
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 4 replies
  • Subscribers 664 subscribers
  • Views 724 views
  • Users 0 members are here
  • raspberry-pi pc system
  • rasberry_pi_3_b_plus
  • remote rasoberry-pi control
Related

Robust PC-RPI IOT Platform

sannerwind
sannerwind over 6 years ago

Does anyone know of a robust Windows PC (master)- RPI IDE (Slave) Platform?   The RPI should have its own Operating System, Keyboard, Big Screen and can be treated as a bidirectional PC peripheral, capable of stand-alone execution.  A PC program (run under its own IDE e.g., Virtual Basic, JAVA...) would treat the RPI's hardware configuration as one big peripheral, via "RPI kernal commands", which can remotely execute any RPI "hat", peripheral, or execute any "command line" via a WiFi channel or USB.   Thank you in advance Jay R Sannerwind@gmail.com

  • Sign in to reply
  • Cancel
Parents
  • shabaz
    shabaz over 6 years ago

    Hi Jay,

     

    I'm not sure of the requirement, your question is framed in an unusual way where you're mentioning some programming languages and command lines, but the end goal is missing to help answer it well.

    1. My Goal in detail

            (e.g. climb a mountain next year)

    2. What things I'm trying to solve

             (e.g. establish how high I am)

    3. What constraints I have

             (e.g. cost, software experience, hardware experience)

    4. What hardware, tools and software I'm using

             (e.g. part number, link to the tools and software)

    5. Diagram or sketch to show the scenario, and what I've attempted

     

    Although it is a guess, possibly a couple of things worth reading up on, maybe they may or may not end up being part of a solution, but are useful to know about anyway, are:

     

    (1) SSH

    With SSH, it's possible to send commands from one machine to another, and have them execute and return the displayed result. For more information on this, see  Accessing and Controlling the Pi

     

    (2) HTTP

    HTTP can be used by programmers to send something like a web link from one machine to another, and have the remote side pull information out of that, perform an action, and then send back the results. HTTP can often be tested by using a web browser, and typing something like http://192.168.0.10/mycommandsystem?command=clearscreen;reportbackwhencomplete=true

    At the remote end, code that is continuously running and listening for such a request (known as web server software) will decipher that line, and do whatever actions it needs to (based on what the software programmer intends) and then send a response back. For more information on this type of scheme, there's a nice tutorial to work through here: https://projects.raspberrypi.org/en/projects/python-web-server-with-flask

     

    Both of the above methods work in a similar way in that they rely on a network protocol, and IP addressing. This works because any device on your home network (you mention WiFi, but it won't matter if it is via WiFi or Ethernet, it will work the same way) have an IP address, and SSH and HTTP work on top of that network, transmitting and receiving information in a client and server machine relationship that comes about when you run server software on the remote machine (SSH is by default running on the Pi once enabled, and the HTTP server can be coded as indicated in the web link above) and when you use client software that makes use of SSH, or HTTP, or when you write your own custom programs that make use of a protocol that the server understands.

     

    Based on this information, it might get you closer to defining what you're looking for, or (hopefully) it may be the answer.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • shabaz
    shabaz over 6 years ago

    Hi Jay,

     

    I'm not sure of the requirement, your question is framed in an unusual way where you're mentioning some programming languages and command lines, but the end goal is missing to help answer it well.

    1. My Goal in detail

            (e.g. climb a mountain next year)

    2. What things I'm trying to solve

             (e.g. establish how high I am)

    3. What constraints I have

             (e.g. cost, software experience, hardware experience)

    4. What hardware, tools and software I'm using

             (e.g. part number, link to the tools and software)

    5. Diagram or sketch to show the scenario, and what I've attempted

     

    Although it is a guess, possibly a couple of things worth reading up on, maybe they may or may not end up being part of a solution, but are useful to know about anyway, are:

     

    (1) SSH

    With SSH, it's possible to send commands from one machine to another, and have them execute and return the displayed result. For more information on this, see  Accessing and Controlling the Pi

     

    (2) HTTP

    HTTP can be used by programmers to send something like a web link from one machine to another, and have the remote side pull information out of that, perform an action, and then send back the results. HTTP can often be tested by using a web browser, and typing something like http://192.168.0.10/mycommandsystem?command=clearscreen;reportbackwhencomplete=true

    At the remote end, code that is continuously running and listening for such a request (known as web server software) will decipher that line, and do whatever actions it needs to (based on what the software programmer intends) and then send a response back. For more information on this type of scheme, there's a nice tutorial to work through here: https://projects.raspberrypi.org/en/projects/python-web-server-with-flask

     

    Both of the above methods work in a similar way in that they rely on a network protocol, and IP addressing. This works because any device on your home network (you mention WiFi, but it won't matter if it is via WiFi or Ethernet, it will work the same way) have an IP address, and SSH and HTTP work on top of that network, transmitting and receiving information in a client and server machine relationship that comes about when you run server software on the remote machine (SSH is by default running on the Pi once enabled, and the HTTP server can be coded as indicated in the web link above) and when you use client software that makes use of SSH, or HTTP, or when you write your own custom programs that make use of a protocol that the server understands.

     

    Based on this information, it might get you closer to defining what you're looking for, or (hopefully) it may be the answer.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube