Bonjour, As-tu "souffert" de la canicule là où tu habites ? Car je suppose que tes précédentes surchauffes sont survenues dans des conditions "normales" de température ambiante ? Effectivement, il y a un polyfuse (disjonction thermique). Pour rappel, le refroidissement prend en général quelques seco...
Hello, I would see the input of your intercom ;-) It may start with a simple push-button... Use this passive push-button (I mean disconnect the electrical part). With simple resistor in serie, you should not destroy your RPI using 1 GPIO and a pull-up to +3.3V for example. Then use another GPIO to c...
Bonjour, Mesurer la tension est toujours un exercice délicat. En effet, le coude de chute est extrêmement rapide. Une autre solution électronique (je dis cela de mémoire) est d'utiliser un composant qui te mesure la totalité de la charge consommée en Coulomb (C). Après un T0 qui correspondrait à une...
Je suppose que tu parles du fichier "/etc/init.d/rc.local" ?
Dans tous les cas peux-tu poster ton fichier ?
Enfin, ta ligne de commande s'exécute t-elle correctement en mode console (à l'issue du boot) ?
A+
Hi tekkie1618, I'm using a simple clever debouncing algorithm from Dr Marty's on my project. http://drmarty.blogspot.fr/2009/05/best-switch-debounce-routine-ever.html Example of my implementation in C language : TYPE_B read_debounced_input1(TYPE_B b_input_value) { static TYPE_B b_sample_B = true; st...
I would answer that it depends how fast you need to sample values.
Linux is not realtime.
What is your sample frequency ? Is it a problem if there is a significant jitter between samples ?
Regards.
JimmyN has clearly explained the setup
I will just add that more the RPI power consumes, more it warms...and more it warms..more it power consumes !
There is a danger of thermal runaway...
Hi kamhagh, I'm not yet an expert but i'm going to give you some clues. Overclocking any kind of processor should not be a problem if : -1) the IC timings meet required specifications (memories access time, and so on...) over your temperature range needs, -2) the chip temperatures meet required spec...
Hi neteng, I'm not yet an expert but i'm going to give you some clues. First of all, you have 2 main ways to make ARDUINO-RPI exchanging data : - using GPIOs and your own protocol, - using the serial link (RS over USB). The WiringPi library will simplify your implementation ! Take care of the fact t...
My suggestion would be to write a SystemD service file, as you are starting from scratch and most OSes are moving or have already moved to SystemD. However to get your SysV Init script going, have you enabled it? sudo update-rc.d senbox.local enable This will create the proper symlinks to automatic...
Hi all, First of all, I consider myself as a beginner because I'm working on RPI/Linux since only 2 weeks. So let's beginning. I know this subject has been developped but I cannot find an answer to my problem. I'm developping a project using bluetooth on RPI3/Jessie Light. My need : to run an initia...