Code Monkey home page Code Monkey logo

ftframework's Introduction

ftframework

ftframework is desiged for controlling big fischertechnik models with multiple computers (fischertechnik TXT controllers, Raspberry Pis, normal desktop computers, ...). All computers (server and all clients) are using the same codebase, configuration file and extensions.

To start a new project just create an empty folder and place the configuration file config.json:

{
  "clients": {
    "testclient": {
      "peripherals": {
        "complex": {
          "printer0": {}
        }
      }
    }
  },
  "peripherals": {
    "complex": {
      "printer0": {
        "builtin": true,
        "path": "Print",
        "name": "Print"
      }
    }
  }
}

This configuration defines one client called testclient and a complex peripheral printer0. printer0 is added to testclient. In this simple configuration the server part is missing, so the server is running on localhost port 4711.

Now we need a server script server.py:

import time

from ftframework.Server import Server

server = Server("config.json")

while True:
    server.printer0.show("Hello World!")
    time.sleep(1)

All peripherals are attributes of the server object and all their calls are directly available.

Now you can start the server by running python3 server.py and in another shell run the client by python3 ftFrameworkClient.py --name testclient config.json.

For more complex configuration check the source code or wait for more documentation.

ftframework's People

Contributors

ski7777 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.