Need a new search?

If you didn't find what you were looking for, try a new search!

Viewing 15 results - 121 through 135 (of 212 total)
  • Author
    Search Results
  • KNXMechanicKNXMechanic
    Participant
      Post count: 3
      #25410 In reply to: ETS5 5.7.2 Download |

      Use ETS6 without dongle. Contact: knxmechanic@gmail.com

      jenzaahjenzaah
      Participant
        Post count: 3
        #25158 In reply to: ETS5 5.7.2 Download |

        If you have a valid ETS5 license, or know somebody with a valid license, you can paste the project in the active project directory, and export it again (with the valid key). That should be importable in ETS6 I guess.

        JokkeVRJokkeVR
        Participant
          Post count: 1
          #25129 In reply to: ETS5 5.7.2 Download |

          Hi,

          Same problem here… but got it fixed :-)
          Just send a support ticket with you ETS5 project to ETS support. say that you cant import your KNX installer ETS5 project into your new ETS6 Home licence. they replyed me that they can open it without any problems. So I asked if they can make a export from the ETS6 version for me.
          Received it and this works fine now :-)

          best regards!
          Jo.

          pjletpjlet
          Participant
            Post count: 2
            #25099 In reply to: ETS5 5.7.2 Download |

            Hi

            i have buy a licencied ETS 6 Home version and i tried to transform my Ets5 project non licenced with this procedure but de project in not show in ets 6 after copy of the directory.

            Have you a solution for this , i have tried an import but ets 6 check and say non licencied project.

            thanks for your help

            cicocico
            Participant
              Post count: 22
              #24682 In reply to: ETS5 5.7.2 Download |

              Hi, someone found ETS5.7.6 medicine ?

              knxuser2knxuser2
              Participant
                Post count: 2
                #24618 In reply to: ETS5 5.7.2 Download |

                Is it possible to load a project from a offical ets5 version in the cracked version?

                JS888JS888
                Participant
                  Post count: 5
                  #24601 In reply to: ETS5 5.7.2 Download |

                  Hi all,
                  ETS6 is there.
                  I’m curious and want to explore. Does anyone have a download link already?
                  thx

                  • This reply was modified 3 years, 8 months ago by JS888JS888.
                  sinn3rsinn3r
                  Participant
                    Post count: 369

                    Moin @etsman
                    Da hatte ich bislang noch keine Zeit für, sind ja für 1 Jahr Entwicklung auch überraschend wenig Neuerungen drin :(
                    Ich schau mal, ob ich nächste Woche die Zeit finde, mir das anzuschauen.

                    rettroorettroo
                    Participant
                      Post count: 2

                      Hi,

                      i copied the Data from this folder in my official version. The Project is no visible but if i try to open i get this error:

                      Knx.Ets.ViewModel.UIFrameworkException: Das Projekt wurde nicht auf diesem PC importiert.

                      someweirdsinsomeweirdsin
                      Participant
                        Post count: 2

                        Hello, people of Earth.

                        I have installed ETS SDK recently and made wrappings in JavaScript(using Jint interpreter) for some Sdk functions.

                        https://box.bobalus.tech/cloud/index.php/s/j8Yb23xqtKNQR7C
                        md5 hash: 3d8fce6050db844c16c45fd257ccb12d

                        Archive contains project source code and compiled binaries, zipped into .etsapp container.

                        All of these I developed and compiled in MicroSoft Visual Studio Community edition, which is free to use for physical person.

                        As and editor I used AvalonEdit and Ctrl+Space inside text area should show helper with commands.

                        I didn’t use it with ETS, but, guessing, it is working (at least source code is ok).

                        As a general reminder: always make backups for your own good.

                        Simple example:

                        setStrictMode(false);
                        createGroupAddress("2/3/4", "meoow");

                        More complex example(create group addresses and link comm objects for device):

                        clear();
                        setStrictMode(false);
                        
                        let device = "1.1.1";
                        let range = "1/1"; let i = 0;
                        let info = getDeviceInfo(device);
                        
                        writeln(JSON.stringify(info, null, 2));
                        info.communication_objects.forEach(function(co) {
                        	let addr = range + i;
                        	createGroupAddress(addr, co.text);
                        	link(device, co.number, addr);
                        });

                        Last one:

                        
                        // now a quick way to swap communication objects -
                        // for example you need to swap two push buttons on device
                        
                        clear();
                        
                        function swapCo(device, num1, num2) {
                        	let info = getDeviceInfo(device);
                        	writeln(info, 1);
                        	let co1 = null;
                        	let co2 = null;
                        	
                        	info.communication_objects.forEach(function(co) {
                        		if (co.number === num1)
                        			co1 = co;
                        		else if (co.number === num2)
                        			co2 = co;
                        	});
                        	if (co1 === null || co2 === null)
                        		return writeln("some of comm objects not found");
                        	
                        	co1.links.forEach(function(l) {
                        		unlink(device, co1.number, l);
                        		link(device, co2.number, l);
                        	});
                        	co2.links.forEach(function(l) {
                        		unlink(device, co2.number, l);
                        		link(device, co1.number, l);
                        	});
                        };
                        
                        swapCo("1.1.42", 17, 122);
                        swapCo("1.1.42", 27, 132);
                        • This reply was modified 4 years ago by someweirdsinsomeweirdsin. Reason: formatting
                        someweirdsinsomeweirdsin
                        Participant
                          Post count: 2

                          rettroo,

                          take a look at “C:\ProgramData\KNX\ETS5\ProjectStore” and figure it out

                          darkmasterdarkmaster
                          Participant
                            Post count: 8
                            BasBas
                            Participant
                              Post count: 3
                              #22878
                              Topic: QC uhr in forum Gira HomeServer |

                              Ich habe eine Uhr mit einer Funktion verknüpft. Ich sehe die eingestellte Zeit in HS Insight. Das Clock-Ereignis wird jedoch nicht ausgeführt. auch nicht als Befehl in der ETS diagnose sichtbar. hat jemand eine idee

                              • This topic was modified 4 years, 3 months ago by BasBas.
                              snoopiersnoopier
                              Participant
                                Post count: 15

                                Ok ok ich bin spät dran aber nun gehts los…
                                Wie gesagt ist jetzt alles aus dem Kopf aber wenn die Stichpunkte erstnal
                                da sind kann ich Fragen auch schnell beantworten also legen wir los.
                                Ich habe das System auf einer Synology aufgesetzt, sollte aber natürlich unter vielen
                                weiteren Virtualisiurungen gehen.

                                1. Debian 9 Stretch AMD64 installieren !!! Wichtig NEUN !!! kein Buster
                                Ich habe dafür die netinstall iso geladen und davon gebootet
                                2. Nur eine primäre Partion anlegen sda1 mit ext4 und als root / bootfähig mit Grub Bootloader in die gleiche Partition
                                3. Legt euch ein Benutzer “hs” an
                                4. Software braucht ihr erstmal nichts, ssh könnte ihr gleich mit installieren

                                So nun solltet ihr das System booten können mit root einloggen
                                5. ETH IF umbennen
                                Datei /etc/default/grub editieren zB mit “nano” und bei GRUB_CMDLINE_LINUX folgendes eintragen “net.ifnames=0 biosdevname=0”
                                Speichern und dann update-grub
                                Datei /etc/network/interfaces den Namen “ens33” in “eth0” überall umbenennen. Wer will kann hier auch eine static IP eintragen
                                6. SSH mit root einloggen wer es möchte..
                                /etc/ssh/sshd_config editieren und “PermitRootLogin yes” unter Authentification eintragen
                                7. Folgende Pakete installieren (Keine Ahnung ob man die alle braucht :-) )
                                apt-get install python python-pil python-numpy python-serial openssl mc setserial joe net-tools cpio psmisc haproxy zip ntpmc

                                So das war der einfache Part :-) Kommen wir zur HS Firmware wir brauchen zwei Sachen die FW selbst und ein funktionierendes Projekt
                                Ich habe mir dann die ExpertenSw installiert und ein SUB updatefile erzeugen lassen. Mit 7Zip entpackt und die Daten ins Linxu kopiert.
                                Das init script manuell abgearbeitet usw. -> kompliziert. Ich empfehler folgendes Vorgehen

                                8. Holt euch hier aus dem Forum ein 4.11 VMware Image “Original”
                                Startet es und packt euch folgende Verzeichnisse in ein TAR Ball
                                /flash/*
                                /ofs/share/*
                                /etc/init.d/hs_starter /etc/init.d/hs_main /etc/init.d/hs_admin /etc/init.d/ctradel

                                9. Kopiert den das TAR in euer Linux und entpackt es dort

                                10. editiert die hs_starter datei und fügt zwischen der zeile pid1 und /etc…/hs_admin
                                ein “sleep 3”. Wozu ? mhhh es ist anscheinend wichtig, dass erst hs_main startet und dann erst hs_admin
                                Ich tippe es ist eine race condition, die bei mir auftritt, weil meine HW zu performant ist :-)

                                Hier stoppen wir erstmal und ihr könnt versuchen die ./etc/init.d/hs_starter zu starten. Wenn das bei jemand läuft machen wir weiter

                                Grüße

                                stefanrstefanr
                                Participant
                                  Post count: 23

                                  Hallo,

                                  ich wollte mich mit der Funktion Logik Online-Test auseinander setzen. Habe dazu unter Projekteinstellungen -> Logik Online-Test -> Zugriff auf das Gerät zulassen -> aktiviert. Das dort bereits vorhandene Kennwort habe ich stehen lassen.

                                  Wenn ich nun im Logikeditor die Funktion starte, dann erhalte ich nach einiger Zeit die Fehlermeldung

                                  “Es konnte keine ordnungsgemäße Verbindung zum Gerät aufgebaut werden (Fehler: Zeitüberschreitung).”

                                  Die Kommunikation auf tcp-60090 vom Endgerät auf dem der Experte läuft zum HS/FS ist funktionstüchtig. Ein entsprechender Test mit powershell Test-NetConnection 192.168.104.9 -port 60090 wird mit TcpTestSucceeded abgeschlossen. Auf dem HS/FS per ssh ein netstat -atn zeigt das der Port offen ist. Ein TCPdump schaut auf der reinen TCP Communication auch soweit sauber aus.

                                  Tippe daher aktuell auf etwas innerhalb vom HS/FS das ich noch nicht beachtet/gefunden habe. Hat jemand dazu noch eine Idee?

                                  Danke & Gruß
                                  Stefan

                                Viewing 15 results - 121 through 135 (of 212 total)