Popular Tags:

1-Wire Sensor: Alarm sendet mail / email

7. Juni 2013 at 21:22

Anbei ein Python Programm, um einen 1-Wire Sensor zu lesen und bei Überschreitung der Alarmgrenzen eine Mail zu versenden. Das script kann man über cronjob […]

Python – mail / email senden

6. Juni 2013 at 21:45

Hauptprogramm [codesyntax lang=”python”] #!/usr/bin/python # -*- coding: utf-8 -*- # # send email via smtp # 2013-06-06 V0.1 by Thomas Hoeser # from avrio_mail import […]

net: command not found / Samba

3. Juni 2013 at 20:40

  [codesyntax lang=”php”] administrator@GRASHA:~$ net -bash: net: command not found [/codesyntax] In diesem Fall samba neu installieren: sudo apt-get remove samba-common sudo apt-get install samba-common

mySQL – Grant Access – Remote Rechner Zugriff auf Datenbank geben

5. Mai 2013 at 18:40

>mysql -uroot -p mysql > connect avrio; mysql > GRANT ALL ON avrio.* TO root@’192.168.178.62′; IDENTIFIED BY ‘PASSWORD’; mysql > FLUSH PRIVILEGES; > sudo nano […]

Projekt: 1.8 TFT Raspberry Pi Status Display

22. April 2013 at 10:50

Das zweite Projekt stellt eine einfache und billige Anzeige für den Raspberry zur Verfügung Dies soll dazu dienen, die Temperaturen der 1-Wire Sensoren, den Status […]

GPIO – Event / Using interrupt-driven GPIO in Raspian

6. April 2013 at 06:59

http://wiki.gumstix.org/index.php?title=GPIO_Event_Driver https://pypi.python.org/pypi/RPi.GPIO Below you will find a version of using interrupts with Quick2Wire library. You want to look at wiringPI, which is offering a method […]

MySQL – auf die MYSQL Datenbank von außen zugreifen

29. März 2013 at 12:15

piw@raspberrypi:~$ mysql -u root -p Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g. mysql> FLUSH PRIVILEGES; Query OK, 0 rows […]

Google Charts

24. März 2013 at 11:19

https://developers.google.com/chart/interactive/docs/gallery/areachart ac.draw(data, { title : ‘1Wire Temperatursensoren’, isStacked: false, width: 1000, height: 400, vAxis: {title: “Temperatur (Grad Celsius)”}, hAxis: {title: “Zeit”}, legend:{position: “bottom”}, areaOpacity: 0 […]

Simple Dashboard

23. März 2013 at 22:01

Anbei ein einfaches WEB-Interface, welches ohne PHP-Kenntnisse erweitert werden kann. Die Lösungen wie raspcontrol sind zwar viel eleganter – leider sind die für mich zu […]

Python im Autostart

23. März 2013 at 08:14

Shell script unter /etc/init.d/ speichern und mit chmod +x ausführbar machen, dann in den Autostart: &gt; nano &lt;name&gt;.sh &gt; chmod +x &lt;name&gt;.sh &gt; update-rc.d <code>&lt;name&gt;.sh […]