Cet article est un mémo contenant lqes commandes utiles pour la réalisation d’un affichage dynamique vertical avec un Raspberry Pi
Désactiver la mise en veille de l’écran
sudo nano /boot/cmdline.txt
ajouter sur la même ligne :
consoleblank=0
source : https://www.raspberrypi.org/documentation/configuration/screensaver.md
Affichage en mode portrait
sudo nano /boot/config.txt
ajouter sur une nouvelle ligne :
display_rotate=1
Fichiers temporaire en RAM (pour économiser des cycles d’écriture sur la carte SD)
sudo nano /etc/fstab
ajouter les lignes suivantes :
tmpfs /tmp tmpfs defaults,noatime 0 0
tmpfs /var/log tmpfs defaults,noatime,size=64m 0 0
Système de fichier en lecture seul
sudo nano /etc/fstab
ajouter « ro » dans les attributs du système de fichier racine
Repasser le système de fichier en lecture / écriture à chaud
sudo mount -no remount,rw /
Point d’accès Wifi pour administration
https://frillip.com/using-your-raspberry-pi-3-as-a-wifi-access-point-with-hostapd/
2 Commentaires
Hello! I know this is a french blog, but given that it seems to be active I really have no idea how else to contact you 😛
I have a question about your project for making the Steam Controller play Midi files. I downloaded it and a couple of midi files, and it worked great!
One thing though… It seems a little intense. Is there a way to turn down the intensity or the power of the notes? I tried editing the midi file to lower the intensity of the notes in there but it didn’t work 🙁
I’m both worried about damaging the controller, and I also don’t like how the music sounds at high intensity, it sounds distorted and not as it should. Thanks!
Auteur
Hi,
I’m sorry, but there is no way to control this, the API exposed to control the haptic feedback being very limited.
I don’t think it can damage the haptic actuators, my controller was heavily used for testing my software, didn’t got any damage from this !