Olten - Solothurn, Switzerland ;)
Read the statement by Michael Teeuw here.
Posts
-
RE: My bathroom smart mirror.
Looks really great. Thanks for the documentation and the review
-
RE: A fan script for a beginner
Maybe you misunderstand me. I just want to turn on the fan and turn it off when the CPU has more than 50 °. I have 3 wires on my fan as shown above.
-
RE: A fan script for a beginner
Sorry that was a wrong picture. I have changed the picture now.
So when I connect the fan to PIN 1 and PIN 3, the fan runs.
That means for me that the fan works with 5V.
Do not I have to connect the yellow wire to a GPIO PIN to get the signal from there to turn the fan on and off?
-
A fan script for a beginner
Hello everybody
I hope someone can help me.
I got a Noctua fan. I would like to connect the fan now to my PI. Unfortunately, I find in the forum or google no “good” instructions. I have hung the red wire on pin 2 and the black wire on pin 6. The yellow wire is on pin 11 (BCM 17).How can I program the fan to start at a CPU temperature of 50 °?
Sorry for the unnecessary question, but I have only 3 weeks the PI and have no knowledge in programming.
Greetings and thank you for your support
Hallo zusammen
Ich hoffe es kann mir jemand helfen.
Ich habe einen Noctua Lüfter besorgt. Gerne würde ich den Lüfter jetzt an meinen PI anschliessen. Ich finde im Forum oder auf google keine “gute” Anleitung. Ich habe das rote Kabel an PIN 2 gehängt und das schwarze Kabel an PIN 6. Das gelbe Kabel lieget auf PIN 11 (BCM 17).Wie kann ich den Lüfter programmieren, dass er bei einer CPU Temperatur von 50° anspringt?
Entschuldigung für die unnötige Frage, aber ich habe erst seit 3 Wochen den PI und habe keinerlei Kenntnisse im Programmieren.
Gruss und danke für eure Unterstützung
-
RE: MM not starting automatically
Maybe I can help you. After typing pm2 starup, you have to type the command what is on the console.
Starting PM2 on Boot
To make sure PM2 can do it’s job when (re)booting your operating system, it needs to be started on boot. Luckily, PM2 has a handy helper for this.pm2 startup
PM2 will now show you a command you need to execute.
https://github.com/MichMich/MagicMirror/wiki/Auto-Starting-MagicMirror
-
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
So, anbei meine Config. Bei “Deine IP” musst du deine IP deines PI angeben.
/* Magic Mirror Config Sample * * By Michael Teeuw http://michaelteeuw.nl * MIT Licensed. * * For more information how you can configurate this file * See https://github.com/MichMich/MagicMirror#configuration * */ var config = { address: "DEINE IP", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface // - "", "0.0.0.0", "::" to listen on any interface // Default, when address config is left out, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "192.168.1.0/24", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"], // or IPv4 range of 192.168.3.0 --> 192.168.3.15 use CIDR format : // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"], language: "de", timeFormat: 24, units: "metric", modules: [ { module: 'MMM-NetworkScanner', position: 'top_right', config: { devices: [ { ipAddress: "Webadresse vom NAS", name: "NAS", icon: "globe"}, { macAddress: "MAC Adresse", name: "Adri", icon: "mobile"}, { macAddress: "MAC Adresse", name: "Lisa", icon: "mobile"}, { macAddress: "MAC Adresse", name: "Desktop", icon: "desktop"}, { macAddress: "MAC Adresse", name: "PI 1", icon: "wifi"}, { macAddress: "MAC Adresse", name: "PI 2", icon: "wifi"}, { macAddress: "MAC Adresse", name: "PI 3", icon: "wifi"}, ], showUnknown: true, showOffline: true, keepAlive: 10, updateInterval: 10, showLastSeen: true, sort: true, } },
-
RE: Deutsche Anleitung MagicMirror auf RaspberryPi 3
@35110, ich kann dir am Abend meine config posten. Ja dort habe ich was geändert, muss am Abend aber schauen was :) bzw. es wurde mir dort geholfen.