Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Libraries not compatible with the New Arduino UNO Q

オープン
#18 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
4/5
見積もり時間
3〜5日
初心者へのやさしさ
30/100
issue の種類
バグ
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
arduino, cpp
領域
embedded-iot

調査の方向性

Start by reproducing the reported failure on an Arduino UNO Q with the provided sketch, focusing on bmv080.begin() and bmv080.init(). Check the library's existing compatibility assumptions and determine whether the library can support this board; done means the sketch initializes the BMV080 without the UNO Q becoming unresponsive, with the result documented or covered by an appropriate test.

索引モデルが issue の本文から書いたものです。

説明

Hello,

Running on the new arduino uno Q and installing the libraries inside takes arduino uno to stop answering back!

bmv080.init();

Breaks the system

#include "SparkFun_BMV080_Arduino_Library.h" // CTRL+Click here to get the library: http://librarymanager/All#SparkFun_BMV080
#include <Wire.h>
#include <Arduino_RouterBridge.h>

SparkFunBMV080 bmv080; // Create an instance of the BMV080 class
#define BMV080_ADDR 0x57  // SparkFun BMV080 Breakout defaults to 0x57

// Some Dev boards have their QWIIC connector on Wire or Wire1
// This #ifdef will help this sketch work across more products


#define wirePort Wire1
int myinit = 0;
void setup()
{
    Monitor.begin();

    while (!Monitor)
        delay(10); // Wait for Monitor to become available.
    // Necessary for boards with native USB (like the SAMD51 Thing+).
    // For a final version of a project that does not need Monitor debug (or a USB cable plugged in),
    // Comment out this while loop, or it will prevent the remaining code from running.

    Monitor.println();
    Monitor.println("BMV080 Example 1 - Basic Readings");

    wirePort.begin();

   

    // wirePort.setClock(400000); //Increase I2C data rate to 400kHz

    /* Initialize the Sensor (read driver, open, reset, id etc.)*/
  
}

void loop()
{
  myinit ++;
 if (bmv080.begin(BMV080_ADDR, wirePort) == false)
    {
        Monitor.println(
            "BMV080 not detected at default I2C address. Check your jumpers and the hookup guide. Freezing...");
        while (1)
            ;
    }
  
   Monitor.println("BMV080 found!");
    if(myinit==10){
        Monitor.println(
            "ini...");
    /* Initialize the Sensor (read driver, open, reset, id etc.)*/
       bmv080.init();
    }
    delay(100);
}
主要言語
C++
スター
15
フォーク
2
PR マージ指標
30日以内にマージされた PR はありません

環境構築

このプロジェクトの環境構築ファイルはまだ確認していません。まず README を読み、一般的な手順ははじめてのコントリビューションガイドを参照してください。

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

sparkfun/SparkFun_BMV080_Arduino_Library のほかの issue

sparkfun/SparkFun_BMV080_Arduino_Library の issue をすべて見る

似ている issue

C++ の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。