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...
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 ...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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. ...
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...