Multi Source Translation Content

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Multi Source Translation Content

讨论

排序依据:
加速度センサの校正 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> こんにちは、 MMA841加速度センサを使用しています。 安定した状態では、X、Y、Z 軸でより高い値のデータを取得できます。 安定した状態で X、Y、Z 軸のデータがゼロとして読み取られるように加速度センサを調整したいと思います。 これについては、アプリケーション ノート AN-4069 を参照してください。AN-4069 の手順に従いました。 キャリブレーションには次の手順を使用し、Accel_offset_X、Accel_offset_Y、Accel_offset_ZはAN-4069に示されているとおりに計算されます。 MMA8451_WriteReg(MMA8451_CTRL_REG_1, 0x018); MMA8451_WriteReg(0x2F, アクセルオフセットX); MMA8451_WriteReg(0x30, アクセルオフセットY); MMA8451_WriteReg(0x31、アクセルオフセットZ); MMA8451_WriteReg(0x2A, CTRL_REG1_Data);//アクティブモードを設定 これにより、キャリブレーション プロセスが機能するようになります。 しかし、上記の手順を無効にしてデバイスを再プログラムすると、キャリブレーション前の元のデータが表示されます。 間違った方向に進んでいる場合は助けてください。 -アムリーン 加速度センサ Re: Accelerometer calibration <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> アムリーン、 1.組み込みのモーション検出機能は、過渡検出機能のようにハイパスフィルタリングされたデータを使用しないため、モーション検出のしきい値を設定する際には、重力による静的加速度を考慮する必要があります。 2. 動きが検出されていないことを確認してください。動き検出にZ軸も有効にして、しきい値を例えば次のように設定すると、0.5g の場合、デバイスの向きに応じて Z 軸が +1g または -1g になるため、デバイスは水平で静止した状態で常に Z 軸上の動きを検出します。 よろしくお願いいたします。 トーマス Re: Accelerometer calibration <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> こんにちは、トーマス。 先ほどの返信ありがとうございます。 キャリブレーションに関して2つの質問があります。 1) Z 軸をキャリブレーションすると、1G より上または 1G 近くに設定されます。動きについて (X、Y、)Z 軸を監視する必要がある場合は、Z 軸の基本値が 1G であるため、しきい値を 1G より上に設定する必要があります。 2) しきい値を 1G 未満に保ち、X、Y 軸でモーション検出を有効にすると、動きが検出されますが、動きがしきい値を超えていても、X、Y とともに Z 軸も有効になっている場合は、モーションが検出されないことが確認されました。予想通りの動作ですか? Re: Accelerometer calibration <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> アムリーン、 部品の電源が切断されると、オフセット レジスタ (0x2F - 0x31) に書き込まれた値は保持されないため、表示されている内容は正しいです。MMA8451Q の電源を入れ直すと、オフセット レジスタはデフォルト値の 0x00 に戻ります。 したがって、キャリブレーション値を MCU フラッシュ メモリまたは外部不揮発性メモリに保存し、起動シーケンス時にオフセット レジスタに書き込むことをお勧めします。 よろしくお願いいたします。 トーマス
查看全文
FXAS21002_Idle() と割り込みステータス <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> これは実際には質問ではありません。パッチ付きのバグレポートです。 ジャイロが不要なときに FXAS21002_Idle() を呼び出すと、割り込みがスタックしたままになる可能性があることに気付きました。FXAS21002_Idle() は、センサーを準備モード (アクティブではなく) に設定し、ドライバーに初期化されていないことを示すフラグを設定します。これは大丈夫です。ただし、FIFO にはまだデータが残っている可能性があり、センサからの割り込みがアサートされたままになります (割り込みを使用している場合)。センサーは初期化されていないとマークされているため、FIFO を空にして割り込みをクリアするための FXAS21002_Read() の呼び出しは、何も実行されずに返されます。これにより、割り込みがハングしたままになります。 修正方法は、センサーを準備モードにした後、isInitialized を 0 に設定する前に、FXAS21002_Idle() で FXAS21002_Read() を呼び出すことだと考えます。isInitialized がまだ true であるため、FXAS21002_Read() は成功し、FIFO を空にして割り込みをクリアします。センサは現在準備モードになっているため、FIFO でこれ以上のデータは収集されません。 差分は次のようになります。FIFO ウォーターマーク割り込みを有効にするためにドライバーに他の変更を加えたため、ライン オフセットは異なります。より完全な解決策は、FXAS21002_Read() の戻りステータスを確認することです。 int8_t FXAS21002_Idle(構造体物理センサー *センサー、SensorFusionGlobals *sfg)      int32_t    状態;      センサが初期化されている場合(F_USING_GYRO) {          ステータス = センサ_I2C_Write(sensor->bus_driver, &sensor->deviceInfo, sensor->addr, FXAS21002_IDLE); +        /* +        * センサーをマークする前にFIFO内のデータをクリアしてください。 +        * 初期化されていません。 +        */ +        FXAS21002_Read(センサ、sfg);          センサ->isInitialized = 0;          sfg->Gyro.isEnabled = false;      } それ以外 { ジャイロスコープ
查看全文
MPXV7205 のシリコンゲルに対するパーフルオロカーボン液体の影響。なぜ本物の企業からのような本物の技術サポートが受けられないのでしょうか?届かないの? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> MPXV7205 のシリコンゲルに対するパーフルオロカーボン液体の影響。なぜ本物の企業からのような本物の技術サポートが受けられないのでしょうか? Re: Effect of perfluorocarbon liquids on the silicone gel of the MPXV7205. Why can't I get real tech support like from a real company?y can't I reach <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> こんにちは、ネイト。 MPXV7025 をあらゆる種類の液体物質や腐食性ガスと直接接触させることはお勧めしません。ゲルが損傷し、センサーが仕様外になる原因となります。 ひずみゲージと較正および補正用の電子回路は窒化物層で保護されていますが、リードフレームとゲージ間の電気的接続を提供するアルミニウム接合パッドは、接合を可能にするために保護されていません。完成したダイもシリコンゲルで保護されています。このゲルは完全に密閉されているわけではありません。新しいタイプの圧力センサーにはより高品質なゲルを使用していますが、水やその他の液体がゲルを浸透してダイに到達する可能性があります。たとえば、センサーダイが水と接触すると、センサーにバイアスが加わるとすぐに、Al/Al3+ と水の間の酸化還元反応が始まります。数時間または数日の作業後、電源ピンのアルミニウム パッドが破壊され、Vcc ピンにオープン回路が発生します。これはアルミニウムの腐食現象です。しかし、センサーの供給電圧をオフにすると腐食現象は停止します。ガルバニック腐食など、他の故障原因もありますが、これらの他の原因による平均故障時間 (MTTF) は、Vcc パッドの電気腐食による MTTF よりもはるかに長くなります。したがって、電気腐食が主な故障原因であり、その故障は永久的です。 メディアの互換性については、 AN3728 を詳しく確認することをお勧めします。 さらにご質問があり、このフォーラムを使用したくない場合は、次の手順に従ってテクニカル サポート チームにお問い合わせください。 1) http://www.nxp.com/support/sales-and-support:SUPPORTHOMEにアクセスします。 2) ページの下部にある「新しいチケットの送信」の下にある「ハードウェアとソフトウェア」をクリックします。 3) NXP テクニカル オンライン サポートにアクセスするには、ビジネス メールで登録します。 4) 確認メールがアカウントに送信されます。アクセスを確認するには、そのメールに埋め込まれているリンクをクリックしてください。 5) NXP オンライン サポート ページで、上部のメニューから [サポートに問い合わせ] を選択し、[新しいCASEを送信] をクリックしてプロセスを開始します。 お役に立てれば幸いです。 よろしくお願いいたします。 トーマス 追伸: 私の回答が質問の解決に役立った場合は、「正解」とマークしてください。ありがとう。
查看全文
mpx2102ap and mpx2102gp I designed a pressure sensor circuit for the AP series and used the difference between its two output voltages to calculate pressure, but now I want to replace it with the GP series without any modification to the circuit, and now I realize that the output pressure difference is so small that the circuit design is not satisfactory. Then I would like to ask, what is the difference between the GP and AP series in terms of circuit design, and is it also utilizing the difference between its two output voltages for pressure calculation? Re: MPX2102AP AND MPX2102GP Please see your new ticket reply's: Re: HOW TO USE THE MPX2202GP - NXP Community Re: MPX2102AP AND MPX2102GP What about circuit usage, for example, if I amplify the two voltages from the sensor output and subtract them in phase, are there any modifications that need to be made to the circuit without taking into account the differences in code? Re: MPX2102AP AND MPX2102GP Hi ZIMO See the difference between them: The differential voltage output of the sensor is directly proportional to the differential pressure applied. The absolute sensor has a built-in reference vacuum. The output voltage will decrease as vacuum, relative to ambient, is drawn on the pressure (P1) side. The output voltage of the differential or gauge sensor increases with increasing pressure applied to the pressure I hope this helps! Thanks a lot!
查看全文
What is the main reason of that the MMA865x has two interrupt outputs? MMA865x has two interrupt pins. Are there special cases that the user should use both channel? Or is it just for convenience? Accelerometers Re: What is the main reason of that the MMA865x has two interrupt outputs? Hi HJ, One interrupt pin is typically used to indicate data-ready for processor synchronization and the second one for any of the embedded functions such as any-motion (slope) detection for wake-up, tap sensing for tap-sensitive user interface control, orientation change recognition for portrait or landscape switching, low-g/high-g detection for shock and free-fall detection, or no-motion for power saving. All these embedded interrupt functions allow for overall power savings relieving the host processor from continuously polling data. Regards, Tomas PS: If my answer helps to solve your question, please mark it as "Correct" or “Helpful”. Thank you.
查看全文
MPXV7002GC6U 连接 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 您好, 我们有一些 mpxv7002GC6US。在第 8 页的手册中,有两种连接方式。我首先尝试了样式 1 后得到了 v_out = v_s。然后,我尝试了第二种样式得到 v_out = 0V。我应该得到 v_out = v_off,对吧?传感器也没有对压力变化做出响应。问题可能出在哪里? 先行感谢,卡迪尔 压力传感器 Re: MPXV7002GC6U connectivity <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 感谢您使用我们的社区。对于这种误解,我们深表歉意,请忽略数据表中显示的 " 样式 ",如果您注意到 " 样式 1 " 用于差分输出电压传感器(因为 +Vout 和-Vout),而 " Style 2 " 用于集成压力传感器,其输出电压参考地面(这就是为什么只显示 Vout,而不是 +Vout 和-Vout)。 MPXV7002 引脚布局见数据表第 3 页图 1,与集成压力传感器相对应。 http://cache.freescale.com/files/sensors/doc/data_sheet/MPXV7002.pdf 针脚 2:VS(5 伏) 引脚 3:接地 引脚 4: Vout 推荐电路如该文件第 4 页图 3 所示。 P1 零压时的输出电压应为 ~2.5v、请查看数据表第 5 页图 4。如果传感器无反应,则可能是连接错误造成的损坏。 希望对你有所帮助。 -乔希
查看全文
MMA8452Q PCBレイアウトの提案 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> MMA8452Q PCBレイアウトの画像を添付します。デザインについて何かコメントはありますか?データシートには、リフロー中のストレスを軽減するために、未使用のピンにぶら下がったトラックを用意する必要があると記載されています。また、データシートに従って、ビアをチップから 2 mm 以上離し、チップの下にグランド プレーンを配置しないでください。私たちのアプリケーションは非常に基本的なもので、1 秒ごとにチップにデータを送信するだけです。中断は必要ありません。ご意見をいただければ幸いです。 加速度センサ Re: MMA8452Q PCB layout suggestions <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> よろしくお願いします! マーティン Re: MMA8452Q PCB layout suggestions <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> こんにちは、マーティン。 送信されたレイアウトの一部を確認したところ、すべて正しいようです。MMA8452Q のレイアウトに関連する問題は発生しないはずです。 すてきな一日を、 ホセ・レイエス ----------------------------------------------------------------------------------------------------------------------- 注: この投稿で質問が解決した場合は、「正解」ボタンをクリックしてください。ありがとう! -----------------------------------------------------------------------------------------------------------------------
查看全文
NTM88 サンプルコード こんにちは、 当社は現在、NTM88 センサー ファミリに関連するプロジェクトに取り組んでいるエンジニアリング会社です。私たちはこれらのセンサを TPMS アプリケーションで使用することに興味があります。 製品の選択、開発ツール、統合に関するさらなるサポートが必要な場合は、弊社に代わってサポート チケットを開いていただくか、担当の技術チームにご連絡いただけますでしょうか。 サポートありがとうございます。 よろしくお願いします、 アイセットテクノロジー株式会社 圧力センサ Re: NTM88 example code こんにちは、Wolke_Trailer_Systems もちろん!私のチーム全員があなたを喜んでお手伝いいたします。 しかし、チケットを開く必要があります。このアクションは、本人確認とプロトコルのために必要です。 問題についてよりプライベートなサポートが必要な場合は、ここで相談してください: https://support.nxp.com/s/?language=en_US コード例は、公式NTM88ページのソフトウェア セッションでご覧いただけます。 この情報がお役に立てば幸いです。他に何かご不明な点がございましたら、お知らせください。 素晴らしい一日をお過ごしください。幸運をお祈りします。
查看全文
MPL3115A2 稳定性测量 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 我尝试在主应用程序轮询中使用 MPL3115A2 并获得 1 秒的数据。我获得了压力或高度数据,但非常不精确,例如 995,23 hPa 995,00 hPa 995,17hPa 994,95hPa 100,00m 100,55m 100,85m 101.05m 99,82m ETC 怎样才能更稳定? "精度为 0.3m" ,如何获取? 压力传感器 Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 感谢 Jose ,我将尝试收集样本并进行平均。 我将拭目以待。 来自波兰的问候 托梅克 Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 你好,托梅克 对于您的应用来说,使用微控制器采集样本并平均输出值似乎是一个不错的解决方案。 我认为 MPL3115A 是一个很好的解决方案,测量速度和精度应该不成问题,但如果您的应用需要更稳定的输出,您可以使用微控制器的平均值技术。 祝您愉快, Jose Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 你好,何塞 根据您的建议,我使用电池供电。遗憾的是,情况并没有好转。 我还试了其他 3 件,但每次都一样。 我不知道这是什么? 我想我可以尝试采集最大采样频率(100Hz),然后在微控制器中求取平均值。 我正在尝试为滑翔伞建造变速计,我必须以良好的精度改变高度一秒钟。 祝您愉快 托梅克 Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 你好,托马西、 初始化代码正确。 在嘈杂的环境中使用 MPL3115A 时也会出现类似的变化,我假设您的系统使用电源供电,您可以使用电池进行测试,以消除电源可能产生的噪音。 您可以执行的其他测试是检查交换系统的 MPL3115A 时是否出现相同的行为(在板上使用新的 MPL3115A 进行测试或使用不同的板进行测试)。因此,我们可以检查问题是否由传感器引起。 祝您愉快, Jose ------------------------------------------------------------------------------- 注: - 如果本帖回答了您的问题,请点击"标记正确" 按钮。谢谢! - 我们会在最后一次发帖后的 7 周内跟踪主题,之后的回复将被忽略 如果您以后有相关问题,请另开新主题,并参考已关闭的主题。 ------------------------------------------------------------------------------- Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 你好,何塞 感谢您的答复。 我知道,传感器必须避光。MPL3115A2 装在带小孔的黑色塑料盒内。温度数据非常稳定,只有高度和气压数据不稳定。我使用的是 OSR= 128。 这是我的启动代码(我使用 AVR 和 C 代码)。 void mpl3115a2_init (void) {IIC_regWrite (MPL3115A2_I2C_ADDRESS,CTRL_REG1,0x04);//将所有寄存器RESET为 POR 值 _delay_ms (1);IIC_regWrite (MPL3115A2_I2C_ADDRESS,PT_DATA_CFG_REG,0x07);//启用数据标志 IIC_regWrite (MPL3115A2_I2C_ADDRESS、CTRL_REG3、0x11);//开路漏极、低电平有效中断 IIC_regWrite (MPL3115A2_I2C_ADDRESS, CTRL_REG4, 0x80);//启用 DRDY 中断 IIC_REGWRITE (MPL3115A2_I2C_ADDRESS, CTRL_REG4, 0x80);//启用 DRDY 中断 IIC_REGWRITE (MPL3115A2_I2C_ADDRESS, CTRL_REG5, 0x00);//路由到 INT2 的 DRDY 中断-PTD3 IIC_regWrite (MPL3115A2_I2C_ADDRESS, CTRL_REG1, 0x39);//主动气压计模式,OSR = 128} 您好 托马斯 Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 您好, 过采样(OSR)模式通过内部组合和平均采样来降低噪音,并通过 128 倍的过采样率获得 0.3 米的压力分辨率。 您如何保护传感器免受光线直接照射到设备顶部的通风孔上方?我只在传感器直接接触光线变化时看到过这种变化。传感器芯片对光线照射很敏感。通过端口孔直接照射光线会导致压力测量的准确性发生变化。在正常操作过程中,应避免将其暴露在端口上。 祝您愉快, Jose Re: MPL3115A2 stability measurement <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 我只想补充一点,我使用的代码是https://community.nxp.com/docs/DOC-95590OSR = 128,保护传感器不受光照影响、
查看全文
MMA8652FC 予期しない割り込み <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> こんにちは。MMA8652FC と nrf52832 を使用して、FIFO、Trans、自動スリープ/ウェイク機能を実現したいと考えています。 そしてほぼ終わりました。しかし予期せぬ中断に遭遇しました。 まず INT1 は Trans INT と Auto Sleep/Wake で、INT2 は FIFO INT のみです。 ロジックは、スタート -> 初期化トランザクション、車載スリープ/ウェイク、FIFO、HPF -> 2 秒後、スリープ モードです。 Trans INT が発生した場合、ウェイク アップして 2 秒後にスリープ モードになります。 また、nrf52832 のボタンを押してスタンバイ モードを設定し、HPF を無効にして、FIFO からデータを取得します。 その後、HPF が有効になり、スリープ モードになります。 車載スリープとトランス機能は問題ありません。それは非常にうまく機能します。 しかし、ボタンを押すと、FIFO からの読み取りは正常です。ただし、スリープモードの前です。INT 1 が発生します。 SO、私の意見では、ボタンを押した場合、Sleep INT は 1 回だけ発生します。しかし、今ではINT1が2回発生しています。 INT_SOURCEレジスタをデバッグします。0 です。割り込みは何も起こりません。 自動スリープ/ウェイクを無効にした場合。予期しない割り込みは発生しません。 割り込みに関して、スリープ <-> ウェイク遷移またはスタンバイ <-> アクティブ モードが失われているのでしょうか? 何が問題なのか教えてください。 よろしくお願いします。 加速度センサ Re: MMA8652FC unexpected Interrupt <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> INT1の割り込み時にINT_SOURCEの内容がゼロになるという問題が発生しました。原因は、加速度センサがINT_SOURCEのチェック前にスリープ状態になったためだと分かりました。自動スリープを無効にしたら、空の割り込みが発生しなくなりました。 Re: MMA8652FC unexpected Interrupt <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> こんにちは、 Bヨンファンさん この問題の根本的な原因が何であるかを言うのは非常に困難です。 割り込みが発生したときは、INT_SOURCE (0x0C) レジスタのビットがどの組み込み関数が割り込みをアサートしたかを示すため、そのレジスタを再確認してください。 INT1 ピンとバスのアクティビティを確認するためのロジック アナライザーまたはオシロスコープをお持ちですか? 予期しない割り込みが具体的にいつ発生するのかを詳しく説明していただけますか?時間依存性はありますか? よろしくお願いいたします。 トーマス
查看全文
MPX5500DPにはMDSレポートがありますか? MPX5500DPにはMDSレポートがありますか? Re: MPX5500DP do you have MDS report? 材料宣言シートまたはコンテンツを検索できます: http://www.nxp.com/chemical-content/search ご質問がある場合は、ECO チームにメールをお送りください。 エコ製品@nxp.com
查看全文
blood pressure monitor portable Hi everyone, i am working with blood pressure monitor portable , I had finished analog circuit from sensor MPX5050 , then i want to test this circuit , but i don't have no idea , how to generate a blood pressure signal ! , can you help me ! Thanks  , here is my ciruits Re: blood pressure monitor portable Hello a b, You’d need a blood pressure cuff. The pressure sensor would measure the pressure change in the cuff: http://flightphysical.com/images/bodyparts/blood-pressure-cuff.jpg In the above image you can see a blood pressure cuff with a mechanical pressure gauge, instead of that you would connect P1 of the MPX5050. Please take a look at “Ankle-Brachial Index” image in the following page for detailed information on using a blood pressure cuff: http://www.ehow.com/how_4425292_use-blood-pressure-cuff.html If you’re only simulating the circuit, you’d need to generate a signal like the one shown in the following page: http://www.biopac.ca/Continuous%20Non%20Invasive%20Blood%20Pressure.htm I’d recommend you to run some test in Matlab or Octave, you can generate such signal by adding sinusoidal signals of different frequencies. You could also download an artificial biomedical signal generator from the following page from OhioLINK ETD Center: http://etd.ohiolink.edu/view.cgi/Bhojwani%20Soniya%20Naresh.pdf?akron1193079604 Hope it helps! Josh Re: blood pressure monitor portable sorry ; i just want to test in software !
查看全文
8452 vehicle motion Hi all, which is the best interrupt option/configuration using this sensor to quickly detect a vehicle (car) movement, without be sensitive to other vibrations (doors opening for example) ? I need to detect when the vehicle really start moving to generate an alarm. Accelerometers Re: 8452 vehicle motion Hello, I'm actually using this configuration to detect vehicle movement. Is there anything I can do to increase sensivity ? I'm trying to play with register without success $2A, [$18] ' 0x2A: CTRL_REG1 system control 1 register, Set device in 100Hz ODR, Standby $1D, [$1E] ' 0x1D: Transient_CFG register, enable latch, Enable XYZ $1F, [$01] ' 0x1F: TRANSIENT_THS register, set threshold to 1 counts $20, [$05] ' 0x20: TRANSIENT_COUNT, set debounce 50mS $2D, [$20] ' 0x2D: CTRL_REG4 register, enable transient interrupt $2E, [$20] ' 0x2E: CTRL_REG5 interrupt configuration register, Route the Transient Interrupt to INT 1 hardware pin Re: 8452 vehicle motion Great. Thank you very much for the excellent support. Marco Re: 8452 vehicle motion Hi, I recommend you to use the Transient Detection embedded function because it compares whether any of the enabled axes has exceeded a set change in acceleration disregarding the static acceleration. The data that is compared to the threshold to be exceeded is high-pass filtered data. The application note AN4071 can help you to understand what is this embedded transient detection function and how to properly set the registers to use this function. And you can also use the application note AN4601 as a more specific guideline for your application since for this document, the MMA8452 was used to detect whether a car is moving by combining the accelerometer's auto-wake/sleep and transient detection functions. Have a great day, Jose ----------------------------------------------------------------------------------------------------------------------- Note: If this post answers your question, please click the Correct Answer button. Thank you! -----------------------------------------------------------------------------------------------------------------------
查看全文
I want to measure /- 62.5 pascal from MPXV7002DP sensor. How can i accomplish that with good repeatability ? I want to measure  +/- 62.5 pascal (+/- 0.25 inch H2O) from MPXV7002DP sensor. How can i accomplish that with good repeatability ? From what i see in the datasheet, it gives 2500mV at 0 pascal, and +/- 1mV per pascal on the positive or negative side. I am assuming to follow these steps : 1) Using a Differential amplifier, subtract 2437.5 mV from the output signal of MPVX7002DP, this will result in 0mV at -62.5 pascal differential pressure - AND also result in 125 mV at +62.5 pascal Diff. Pressure. and then, 2) Add a gain stage of x24, so the resultant max 125mV will become 3000mV, which is the upper range of my  ADC. However, my problems are : A) Is this the right approach ? B) how do i generate a precise reference of 2437.5 mV for the differential amplifier ? C) The graph of output voltage from the sensor shows different slopes at different temperatures. How do i accomodate for this in my design ? Thanks for your help. Re: I want to measure /- 62.5 pascal from MPXV7002DP sensor. How can i accomplish that with good re Hi - I would also be interested in the NPS30 devices. I have used about 15000 MVPV7002DP units over the last 7 years, but I am finding it difficult to source now that ventilators are in such high demand. My product, which is used in the industrial safety field, depends on the ability to measure down from -100Pa. I would dearly love to fit a gauge sensor capable of negative pressures, but I have not found one yet. Also I2C would be preferable to analog and associated signal conditioning.  Re: I want to measure /- 62.5 pascal from MPXV7002DP sensor. How can i accomplish that with good repeatability ? Hello. Thank you Frank for the insight and new product offering. We were in the process of finalizing our product design, which includes the MPXV7002DP for very low D.P. measurement, along with other sensing, control and logging systems. As we would have it, we do have some time on hand for doing actual tests on prototypes, before locking everything down. Would it be possible for you guys to share with us the Datasheet(s) and any application notes for the indicated NPS30 series of sensors, possibly with footprint and 3D model data, so we could in the mean time, design test prototype PCBAs ? By the time that's done, your new NPS30 would be available (hopefully), so perhaps we could sample a few and test on the new prototypes to finalize the electrical and mechanical design of our product, and plan productions accordingly  ? You might understand, that the firmware will be finalized on the actual prototypes as well, so having the soft data (datasheets, app notes and PCB library footprint / 3d step files, etc.) early on would help us finalize our product design faster and reduce our go-to-market time. Thanks. Re: I want to measure /- 62.5 pascal from MPXV7002DP sensor. How can i accomplish that with good repeatability ? Hello, reviewing the datasheet for the MPXV7002DP, the typical sensitivity is ± 2.5% full scale span equating to ±100 Pa which is larger than ± 62.5 Pa required.  We will however, have a digital differential pressure sensor (NPS30 family) available for sampling later this year that will meet your requirements.  MCU based software examples will also be available for several different Freedom MCU boards at Sensor Toolbox: Sensor Development Ecosystem|NXP . Please contact our regional sales team for additional information.
查看全文
Long term water level monitoring using MPxx5004 Hi there, I am looking to use the MPxx5004 to measure water level over a long period of time, 5 – 10 days. I have built a test rig to check the use of the pressure sensor. A silicon tube is submerged to the bottom of the reservoir with the other end of the tube connected to the sensor. The sensor is always above the water level ensuring a column of air between the reservoir and the sensor. What I’m seeing though is a drift in the range of 0.25 – 0.35v in a 24 hour period. The drift is not only negative but appears to be cyclical as if the sensor is being effected by temperature (or some other environmental attribute).  Any help would be appreciated. Re: Long term water level monitoring using MPxx5004 Hi Jose, thanks so much for you response. Pleased that I have the correct method of measurement in place. The drift that I am seeing could be in as little as 12 hours, yesterday I observed a movement of 918mV to 1,090mv in just 8 hours where the tank had no change in water level. Thanks in advance. Ben. Re: Long term water level monitoring using MPxx5004 Hi, You are performing the correct method to measure water level using pressure sensor by using the silicon tube and the column of air avoiding the sensor to be in direct contact with the water. Sources of offset errors and drift are due to device to device offset variation (trim errors), mechanical stresses (mounting stresses), shifts due to temperature and aging. Performing auto-zero will greatly reduce these error. Auto-zero is a compensation technique based on sampling the offset of the sensor at reference pressure in order to correct the sensor output drift or variation, this technique will correct the error on zero pressure and across the complete pressure range. Details about the autozero technique can be found in the Application note AN1636: https://www.nxp.com/docs/en/application-note/AN1636.pdf Regards, Jose NXP Semiconductors
查看全文
如果 MMA8451Q 上的 SA0 未连接,会发生什么情况? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 我不小心在我最新的板上留下了 MMA8451Q 的 SA0。我可以期待什么样的行为?我认为,它要么默认使用一个地址(0x1C 或 0x1D),要么在启动时确定地址(即随机选择一个地址,但只要有电就一直使用),要么在地址之间不断跳转? 第一种和第二种情况可以很容易地通过软件来处理,但第三种情况会很糟糕。 谢谢! 编辑:AN4077 规定"第 7 引脚(SA0:地址引脚)、......都应使用上拉/下拉电阻器,以确保保持引脚的状态。" ,因此我认为不连接该引脚是个错误的做法。 信息编辑者:osed 加速度传感器 Re: What happens if SA0 is left unconnected on MMA8451Q? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 嗨,奥斯卡、 是的,SA0 引脚没有内部上拉或下拉电阻,因此无法知道如果保持浮空,引脚处的值是多少。要求 SA0 引脚连接至 VDDIO(7 位地址 = 0x1D)或 GND(7 位地址 = 0x1C)。 此致, 托马斯 PS:如果我的回答有助于解决您的问题,请标记为"正确" 。谢谢。
查看全文
恩智浦 FXLS8964 传感器的前身 亲爱的恩智浦 我想了解 FXLS8964 传感器的前身是什么,这两个传感器之间有什么区别? 提前感谢! Re: Predecessor of NXP FXLS8964 sensor 你好,塔马斯、 FXLS8964 的前身是 FXLS8962。 它们的引脚和 SW 兼容,但 WHO_AM_I 和 PROD_REV 寄存器的编程方式不同。 顺祝商祺! 托马斯
查看全文
Predecessor of NXP FXLS8964 sensor Dear NXP! I would like to require information that what is the predecessor of FXLS8964 sensor and what is differences between the two sensors? Thanks in advance! Re: Predecessor of NXP FXLS8964 sensor Hello Tamás, The predecessor of the FXLS8964 is FXLS8962. They are pin and SW compatible, but have WHO_AM_I and PROD_REV registers programmed differently. Best regards, Tomas
查看全文
Is the MPX4250DP a direct replacement for MPX4250GP Can the MPX4250DP be used in place of the MPX4250GP if one side of the differential is vented to atmosphere?  Just got notice today that the MPX4250GP is obsolete. Pressure Sensors Re: Is the MPX4250DP a direct replacement for MPX4250GP Hello Greg, Yes you can use any of our differential pressure sensors (DP) as a gauge pressure sensor (GP) as long as you apply pressure into port number one and leave port number two open to the atmosphere. Have fun! Josh
查看全文
Question, Sensor Tool Box on Windows10 Dear team, My customer is using FRDMKL25-A8471 for evaluating NXP/Accelerometer. And they are facing the issue that SensorToolBox software does not run on Windows10 PC. Could you please give your advice to solve this issue? They downloaded FreedomSensorToolboxCEInstaller(v2.5.0) from NXP/WEB site. And they downloaded PEDrivers_install(v12.4) from PEmicro/WEB site. And they installed those with default settings. As a result they saw the software can run on Windows7(Pro 32bit edition) but it does not run on Windows10(PRO 64bit) environment. They think the connection between PC and the board cannot be established. Could you please give your advice to solve this issue? Thanks, Miyamoto Accelerometers Re: Question, Sensor Tool Box on Windows10 Dear Miyamoto-san, Sounds like your customer is experiencing the issue described in Chapter 7.1 of the STBCEUG. Please recommend him to download and program the board with the latest OpenSDA driver from PEmicro website. If everything goes well, the FRDM-KL25Z should be detected/shown as a removable disk in Windows Explorer and enumerated as a serial port in the Device Manager/Ports group. I hope it helps. Best regards, Tomas
查看全文