1

だから私はメールでLEDマトリックスを手に入れたばかりで、この指示可能なhttp://www.instructables.com/id/Arduino-Processing-Audio-Spectrum-Analyzer/?ALLSTEPSからコードをアップロードしようとしていますが、エラーが発生し続けます

ArduinoCode:2: error: 'ht1632c' does not name a type
ArduinoCode.cpp: In function 'void setup()':
ArduinoCode:11: error: 'dotmatrix' was not declared in this scope
ArduinoCode.cpp: In function 'void loop()':
ArduinoCode:35: error: 'dotmatrix' was not declared in this scope
ArduinoCode:35: error: 'BLACK' was not declared in this scope
ArduinoCode:41: error: 'GREEN' was not declared in this scope
ArduinoCode:107: error: 'ORANGE' was not declared in this scope
ArduinoCode:131: error: 'RED' was not declared in this scope
ArduinoCode:153: error: 'dotmatrix' was not declared in this scope

コードはhttp://www.instructables.com/files/orig/FSH/KZKA/GZ0BVJOC/FSHKZKAGZ0BVJOC.inoです。コードをここに投稿する方法がまだわからないからです

4

1 に答える 1

2

このエラー メッセージが表示されるのは、ライブラリ フォルダーにファイル (プログラムから含まれている) がないためです。

あなたが言及したinstructablesには、libary.zipファイルと呼ばれる添付ファイルがあります。zip ファイルをダウンロードして解凍し、内容を arduino ライブラリ フォルダーにコピーします。これを行うと、コードは適切にコンパイルされるはずです。

于 2012-08-15T12:53:03.427 に答える