問題タブ [wiringpi]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
907 参照

c++ - 配線Piでのセグメンテーション違反

私はコーディングにかなり慣れていないので、RasPi の GPIO ピンに接続されたボタンが押されるたびに、テキスト ドキュメントにプレースホルダーを書き込む何かを書き込もうとしています。

コードは問題なくコンパイルされますが、コマンドなしでターミナルで実行するとsudo、「セグメンテーション違反」エラーが発生します。
コマンドで実行するとsudo、プログラムが起動してすぐに終了します。

参考のため:

  • ピン 12 は、ブレッドボードの分圧器に電力を供給しています。
  • ピン 4 は、この分周器から入力を受け取る必要があります。
  • ピン 14 は、ピン 4 に入力があるたびに LED を点灯させます。

プログラムを実行して分圧器のボタンをすばやく押すと、ボタンを押したままにすると LED が点灯します。

起動するとすぐに停止することなく、これを適切に実行するにはどうすればよいですか?

0 投票する
1 に答える
1027 参照

c++ - Use wiringPi with interrupts and lcd simultaneous

I'm new to C++ programming on linux. I try to use an rotary encoder to control values on a lcd. Depending on wich wiringPi Setup routine I use, only interrupts or the lcd work, but not both at the same time. I exported all nessersary GPIOs so that sudo is not needed.

Here the C++ code:

Now the question is why it behaives like that and what can/should I do.