Changes between Version 6 and Version 7 of Features


Ignore:
Timestamp:
May 27, 2013, 11:21:54 AM (11 years ago)
Author:
Frédéric
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Features

    v6 v7  
    55== Introduction ==
    66
    7 pKNyX is written in pure [http://www.python.org python], so do not require any (annoying) (cross-)compilation! Its goal is to build simple, efficient and robust applications to extend capabilities of KNX installations, by adding rules and/or virtual devices, and thus create a smart processor for KNX home automation.
     7'''pKNyX''' is written in pure [http://www.python.org python], so do not require any (annoying) (cross-)compilation! Its goal is to build simple, efficient and robust applications to extend capabilities of KNX installations, by adding rules and/or virtual devices, and thus create a smart processor for KNX home automation.
    88
    99This project is inspired from several other free projects:
     
    2020''Note: some of these project do not seem to be maintained anymore, but the files are still available.''
    2121
    22 The main target is [http://www.pcengines.ch/alix.htm ALIX board] running [https://openwrt.org OpenWRT], but can run on any system when python is available. It does not require any compilation.
     22The main target is [http://www.pcengines.ch/alix.htm ALIX board] running [https://openwrt.org OpenWRT], but can run on any system when python is available. As said, it does not require any compilation.
     23
     24== Roadmap ==
     25
     26This is an ambitious project, and I think it will take me a lot of time to achieve all my goals! So, I'm know working of how I can schedule different parts of the project, to build it step-by-step.
     27
     28One of the main challenge is to have a good comprehension of the KNX specifications. As these specs are not freely available (they cost a lot!), I have to search here and there to find and bring pieces all together. Source code of other free projects are a great source of information, and I want to thanks the authors; some are still working on their projects, and are all very nice when I ask them for informations.
     29
     30My first idea was to build a complete KNX stack in python, to avoid compilation of low level tools, like '''eibd'''. But in fact, this is the most difficult part! KNX bus communication is based on OSI layers, so it needs to have a very good comprehension of this model to implement it. I decided to first focus on the core of pKNyX, which is '''virtual Devices''' implementation. The bus communication will rely on '''eibd''', and the python KNX stack will be developed later.
     31
     32 * Core (virtual devices)
     33 * linknx compatibility mode (for knxweb usage)
     34 * specific server mode, to
     35 * KNX stack
     36
     37Have a look at the [[Proposal]] page to see what I have in mind.
     38
    2339== Main ==
    2440