Search found 44 matches

by Timo
17 Oct 2017, 16:07
Forum: Mein Projekt
Topic: Zuführanalge mit Inspektion
Replies: 6
Views: 7568

Re: Zuführanalge mit Inspektion

Mit SmartCams ist das Thema Bildverarbeitung am RevPi natürlich erheblich einfacher. ;) Ich verwende für ein anderes Projekt ebenfalls solche Kameras von einer anderen Firma. Das ist kein günstiger Spaß. Für mein Bastelprojekt verwende ich eine Basler Ace. Ist klein, relativ günstig, Ethernet Anschl...
by Timo
16 Oct 2017, 15:11
Forum: Mein Projekt
Topic: Zuführanalge mit Inspektion
Replies: 6
Views: 7568

Re: Zuführanalge mit Inspektion

Definitiv interessant, vor allem wenn der Pi auch die Bildauswertung übernehmen soll. (Ich arbeite diesbezüglich auch an einem kleinen Projekt)
by Timo
29 Sep 2017, 17:54
Forum: Mein Projekt
Topic: HowTo: SSH Proxy einrichten
Replies: 0
Views: 6802

HowTo: SSH Proxy einrichten

Vorwort Das hier ist ein kleines Projekt, welches im Rahmen eines größeren Revolution Pi Projekts entstanden ist. Vielleicht hilft es dem ein oder anderen weiter. Worum geht es? Bei meinem RevPi Projekt ist der Pi über einen USB Netzwerkadapter mit einem PC (nachfolgend "Anlagenrechner" g...
by Timo
05 Sep 2017, 11:56
Forum: Hardware
Topic: Enclosure
Replies: 5
Views: 5465

Re: Enclosure

Have you tried https://www.bopla.de/en/enclosure-finder.html ?
Do you need it for professional or private usage?
by Timo
26 Jul 2017, 08:38
Forum: Hardware
Topic: RevPi Core3 Network configuration problem
Replies: 7
Views: 6329

Re: RevPi Core3 Network configuration problem

With which tool did you discover the MAC address by ARP? (There is no IP being displayed?) I suppose you do not have access to a computer with Wireshark or to a Linux machine (for the "arping" command) on your customers network? If you have at least the possibility to get a remote connecti...
by Timo
05 Jul 2017, 09:54
Forum: Software
Topic: Prozessorzeit
Replies: 8
Views: 6301

Re: Prozessorzeit

Wenn es dir um ein genaues Signal geht, mit dem du etwas takten willst, empfehle ich dir einen Signal Handler zu benutzen. Siehe u.a.: https://stackoverflow.com/questions/4001178/how-to-implement-a-timer-with-interruption-in-c void sigalrm_handler(int sig) { // This gets called when the timer runs o...
by Timo
23 Jun 2017, 16:24
Forum: Software
Topic: WHo would like to contribute for a little project?
Replies: 2
Views: 3450

Re: WHo would like to contribute for a little project?

Challenge accepted Volker! ;-) Here is my (quick and dirty) solution: Power up your RevPi and connect via SSH or directly. Copy your dhcpd.conf file as a preset: pi@RevPi ~ $ sudo cp /etc/dhcpcd.conf /etc/dhcpcd.conf.failsafe Copy your interfaces file as preset: pi@RevPi ~ $ sudo cp /etc/network/int...
by Timo
19 Jun 2017, 12:19
Forum: Software
Topic: C
Replies: 14
Views: 9636

Re: C

Etwas einfaches habe ich nicht. Ich habe mal dein Beispiel etwas abgewandelt (ohne Garantie). Bei jedem Aufruf wird entweder der Zustand von Pin 2.0 ausgelesen und ausgegeben, oder eine Fehlermeldung. #include <stdio.h> #include <stdlib.h> #include <fcntl.h> //fuer die Konstante O_RDWR und open() #i...
by Timo
19 Jun 2017, 10:07
Forum: Software
Topic: C
Replies: 14
Views: 9636

Re: C

1.) Du hast was von Eingang 2 geschrieben, aber in deinem Beispiel gibst du nur Eingang 1 aus: Ist: printf("\n%d",daten[0]); Soll: printf("\n%d %d",daten[0], daten[1]); 2.) Was sagen die Rückgabewerte der Funktionen bei dir? 3.) In meinem Code verwende ich die Funktionen "op...
by Timo
12 May 2017, 11:59
Forum: Wunsch- und Ideensammlung
Topic: Pi Core (oder Gateway) mit zweitem Netzwerkinterface
Replies: 7
Views: 13146

Re: Pi Core (oder Gateway) mit zweitem Netzwerkinterface

Könnte das Problem nicht auch mit einem virtuellen Netwerkgerät zu lösen sein?
Siehe u.a.: https://www.bentasker.co.uk/documentati ... -in-debian