Skip to content

Instantly share code, notes, and snippets.

@ArduinoDiscordBot
Created January 20, 2021 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArduinoDiscordBot/dbac9e471f1d0276a42fb937b7786277 to your computer and use it in GitHub Desktop.
Save ArduinoDiscordBot/dbac9e471f1d0276a42fb937b7786277 to your computer and use it in GitHub Desktop.
Code by GlickvonGluck#7617 - Wed Jan 20 2021 10:38:26 GMT+0000 (Coordinated Universal Time)

This gist was pasted by the Arduino discord server bot.

This gist was automatically pasted at the request of the code author or one of the discord server helpers. If you have any suggestions or bugs to report, you can do so on our GitHub repository, or in our discord server. This project is run by volunteers so feel free to fork and commit your changes then open a pull request!


⬇️ Pasted Code ⬇️

cpp
bool Adafruit_BME280::begin(uint8_t addr, TwoWire *theWire) {
bool status = false;
_i2caddr = addr;
_wire = theWire;
status = init();
return status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment