私は同様の質問がされていることを知っていますが、解決策を見つけることができません。 I機能を返すために、このコードを使用してきたが、動作していないよう:オーバーロードされた関数呼び出しdoubleはあいまいです
#include <math.h>
// Computes the bearing in degrees from the point A(a1,a2) to
// the point B(b1,b2). Note that A and B are given in terms of
// screen coordinates
double bearing(double a1, double a2, double deg, double degy) {
a1 = 37.40733;
a2 = -121.84855;
static const double TWOPI = 6.2831853071795865;
static const double RAD2DEG = 57.2957795130823209;
// if (a1 = b1 and a2 = b2) throw an error
double theta = atan2(deg - a1, degy + a2);
if (theta < 0.0)
theta += TWOPI;
return RAD2DEG * theta;
Serial.print(bearing);
}
私は、このエラーメッセージ受信し続ける:そのコードを持つ3つの問題があり
Arduino: 1.8.1 (Windows 7), Board: "Arduino/Genuino Uno"
C:\Users\family\Documents\Arduino\GPStester\GPStester.ino: In function 'double bearing(double, double, double, double)':
GPStester:90: error: call of overloaded 'print(double (&)(double, double, double, double))' is ambiguous
Serial.print(bearing);
note: no known conversion for argument 1 from 'double(double, double, double, double)' to 'long unsigned int'
exit status 1 call of overloaded 'print(double (&)(double, double, double, double))' is ambiguous ambiguous
'Serial.print(bearing); 'は到達不能なコードのようです。 –
私はarduinoをプログラムしていませんが、エラーメッセージは 'Serial.print'によって予想される引数が' long unsigned int'であると思われます。関数へのポインタを渡しています。 –
コメント内の "点B(b1、b2)"と言い、パラメータで "deg"と "degy"を言うのは非常に混乱します。これらのパラメータはポイント「B」ですか?名前は角度で表されるように見えます。 – molbdnilo