You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i2d slave address が間違っている場合にはどのアドレスを指定したデバイスでのエラーか分かるよう Could not access to i2c slave device with i2c address: 0x${this.slaveAddress.toString(16)}. Please check i2c address and wiring to i2c device (ADS1x15). のようなエラーメッセージを出したい (this.slaveAddress は初期化時点で整数値が指定されていることを確実にした上で)
より具体的に言えば if(this.i2cSlave ==null) 時に出すエラーメッセージが "i2cSlave is not open yet." はまだしも "i2cslave is gone..." というエラーメッセージ (ads1x15) はこのエラーを発生させてしまうレベルの人には難しい。
The text was updated successfully, but these errors were encountered:
初学者のデバッグを手伝っていてエラーメッセージが分かりにくいとの意見があり、以下のような修正をしたい。
i2c device initialization have not dompleted yet. Please call read() method after init().
というようなエラーを返すCould not access to i2c slave device with i2c address: 0x${this.slaveAddress.toString(16)}. Please check i2c address and wiring to i2c device (ADS1x15).
のようなエラーメッセージを出したい (this.slaveAddress は初期化時点で整数値が指定されていることを確実にした上で)if(this.i2cSlave ==null)
時に出すエラーメッセージが "i2cSlave is not open yet." はまだしも "i2cslave is gone..." というエラーメッセージ (ads1x15) はこのエラーを発生させてしまうレベルの人には難しい。The text was updated successfully, but these errors were encountered: