Go to advanced search

by ghp
Sat Jun 22, 2013 10:22 pm
Forum: Deutsch
Topic: Bei welcher Tacktung 24/7?
Replies: 12
Views: 5349

Re: Bei welcher Tacktung 24/7?

Hallo, Hallo, ich habe hier ein System mit 900MHz laufen, und das seit 86 Tagen. Kühlkörper sind keine montiert. Allerdings wartet das System überwiegend darauf, dass endlich was zu tun ist. Insofern ist die thermische Belastung gering. Ist aber sicher nur eine einzelne Beobachtung. In der Regel ist...
by ghp
Sat Jun 22, 2013 6:11 pm
Forum: Deutsch
Topic: Raspberry vom rechner aus kontrollieren
Replies: 6
Views: 4653

Re: Raspberry vom rechner aus kontrollieren

Hallo, das Kontrollieren von Linux-Rechnern wird i.d.R. über eine Netzwerkverbindung erledigt. Für Model B, Netzwerkkabel einstecken und mit dem lokalen Netzwerk verbinden. Die Voreinstellung ist DHCP, so dass der Rechner (meist über den lokalen Router) eine IP-Adresse bekommt. Für Model A wird das ...
by ghp
Wed Jun 19, 2013 8:27 pm
Forum: Deutsch
Topic: Starterkit für Einsteiger ?
Replies: 12
Views: 5231

Re: Starterkit für Einsteiger ?

Hallo, für den Anfang würde ich empfehlen: - Adafruit Pi T-Cobbler Breakout Kit oder Adafruit Assembled Pi Cobbler Breakout + Cable for Raspberry Pi es hängt davon ab, ob ein Lötkolben vorhanden ist, was hier zu besorgen ist. - 26-pol Flachbandkabel, u.a GPIO Ribbon Cable for Raspberry Pi, aber da t...
by ghp
Wed Jun 19, 2013 7:57 pm
Forum: Deutsch
Topic: Zeigt her euren Pi
Replies: 7
Views: 4448

Re: Zeigt her euren Pi

Olaf_Ramge wrote:I
Ich habe dazu eine Huckepack-Platine gebaut, die die Messwerte von Stromwandlern an den Raspi uebertraegt.
Hallo, hier würden mich Details interessieren: welche Stromwandler, und wie funktioniert die Signalaufbereitung ?

Grüsse
Gerhard
by ghp
Wed Jun 19, 2013 5:29 pm
Forum: Troubleshooting
Topic: java ide???
Replies: 1
Views: 845

Re: java ide???

Hello, difficult. Good IDE need much memory, and usually are a challenge even for desktop computers. I develop my code (python, c++) in eclipse on a workstation, and download to Raspberry to execute (C++ needs to compile, but the eclipse CDE generated makefiles work without modification on the raspb...
by ghp
Wed Jun 19, 2013 4:51 pm
Forum: Deutsch
Topic: Zeigt her euren Pi
Replies: 7
Views: 4448

Re: Zeigt her euren Pi

Hallo, eine meiner Anwendungen ist ein etch-a-sketch. Es ist als Werbe-Anwendung für einen Schularbeitskreis gedacht. Besteht aus raspi, Schrittmotorplatine und einer Adapterplatine, welche entweder direkten Zugriff des RASPI auf die Schrittmotoren erlaubt, oder die Signale über einen slave-atmel-32...
by ghp
Wed Jun 19, 2013 4:35 pm
Forum: Deutsch
Topic: Skript über Taste ausführen
Replies: 7
Views: 9665

Re: Skript über Taste ausführen

Hallo, das ist ein wenig umständlich ? Den Taster direkt an einen GPIO-Pin anzuschliessen wäre wahrscheinlich einfacher. Das python- Programm fragt einen GPIO Pin ab, entprellt das Signal und führt einen Prozess (hier shutdown) aus, wenn die Taste gedrückt ist. Der Code ist - zugegeben - aus einem m...
by ghp
Sat Jun 15, 2013 7:49 pm
Forum: Deutsch
Topic: Herunterfahren über Dev Reset Pin-Header P6
Replies: 21
Views: 12157

Re: Herunterfahren über Dev Reset Pin-Header P6

Hallo, das ist ein reset-Taster. Das System räumt da nicht sauber auf. Mit GPIO geht das: ein Hintergrundprozess, über init.d gestartet. Der liest einen GPI pin ein. Wenn der Pin einen bestimmten Pegel hat, dann 'shutdown -h 0' über einen 'system'-Aufruf ausführen. Den Prozess erst mal ohne den shut...
by ghp
Sat Jun 15, 2013 9:49 am
Forum: Troubleshooting
Topic: Help, cannot connect any longer!
Replies: 2
Views: 659

Re: Help, cannot connect any longer!

Hello, looks as if you need to attach a keyboard and monitor to your system. I do not know any possibility to repair network settings by network. Hope your system is not too far away. Edit /etc/network/interfaces and replace by the default: auto lo iface lo inet loopback iface eth0 inet dhcp allow-h...
by ghp
Sat Jun 15, 2013 8:44 am
Forum: Python
Topic: Keep python script running?
Replies: 15
Views: 18884

Re: Keep python script running?

Hello, simple solution is to start the program with an '&' at the end of the command line. This creates a daemon process, running detached from the session. In unix, processes are started as childs of the console session, and closing the session means stopping the processes. Detached processes are n...
by ghp
Sat Jun 15, 2013 8:22 am
Forum: Python
Topic: CGI script calling a simple Python script problem
Replies: 10
Views: 8725

Re: CGI script calling a simple Python script problem

Hello, the code os.system("python /var/www/cgi-bin/dac.py 'val'") will put a string 'val' to the command line of the dac.py-code. Try os.system("python /var/www/cgi-bin/dac.py '{:d}'".format(val)) . This will place the value of val as a string into the command line. Check this by placing a print-sta...
by ghp
Fri Jun 14, 2013 3:09 pm
Forum: Deutsch
Topic: Pi als WLan Acess Point
Replies: 6
Views: 3031

Re: Pi als WLan Acess Point

Hallo, erst mal würde ich die folgende Anleitung empfehlen: http://www.tacticalcode.de/2013/02/raspberry-pi-als-accesspoint-oder-wlan-bridge.html Dann das Öffnen der config-Files: linux hat ein Berechtigungssystem, das den Zugriff auf alle Dateien regelt. Konfig-Dateien sind in der Regel so eingeste...
by ghp
Wed Jun 12, 2013 1:32 pm
Forum: Advanced users
Topic: Power the Pi via GPIO / backpower
Replies: 9
Views: 6061

Re: Power the Pi via GPIO / backpower

Hello, in the magpi magazine, one of the first issues, there was a design for a switched power supply, providing 5V, 3A from some 7 to 30 V or so. I have used this design in one of my projects, and got good results. I feed the 5V into the 5V_Pin of the gpio-Header and the raspi internal voltage regu...
by ghp
Wed Jun 12, 2013 1:28 pm
Forum: General discussion
Topic: Adding a co-processor?
Replies: 9
Views: 8452

Re: Adding a co-processor?

Hello, I have constructed an adapter board, where an atmel 328 is used and performs time critical tasks. Communication is SPI (for my case), but getting data back by SPI is tricky, as the usual microcontroller speed is quite slow and SPI is incredible fast. In my case, I have use low spi-maxfrequenc...
by ghp
Wed Jun 12, 2013 1:09 pm
Forum: Deutsch
Topic: Raspberry Pi Einstieg
Replies: 8
Views: 6700

Re: Raspberry Pi Einstieg

Hallo, um mit einem Telefon eine Garage zu steuern, brauchst Du: - eine wireless Verbindung - etwas Logik auf dem Raspberry - eine Möglichkeit die Garage anzusteuern. wireless: entweder den raspi an das Hausnetz hängen per LAN, der AccessPoint am Hausnetz kann die Verbindung zum telefon herstellen. ...
by ghp
Wed Jun 12, 2013 12:53 pm
Forum: Deutsch
Topic: Steuerung für 3 Motoren, 4-5 Magnetventile und 1 Sensor?
Replies: 2
Views: 3609

Re: Steuerung für 3 Motoren, 4-5 Magnetventile und 1 Sensor?

Hallo, für Motoren und Ventile braucht man eh zusätzliche Elektronik, um die benötigte Leistung zur verfügung zu stellen. Für 4 Motoren gibt es von Sparkfun ein stepper-controller board, welches bis zu 1 (max 2) Ampere bereitstellt und ein einfaches Interface für den host-prozessor hat (direction, s...

Go to advanced search