Pseudo-Medical Monitor Code: Difference between revisions
Jump to navigation
Jump to search
Tag: Replaced |
|||
| Line 69: | Line 69: | ||
[[Pseudo-Medical Monitor Code HNDHLD STUFF|#include "HNDHLD_Stuff.h"]] | [[Pseudo-Medical Monitor Code HNDHLD STUFF|#include "HNDHLD_Stuff.h"]] | ||
<nowiki> | |||
</nowiki> | |||
[[Pseudo-Medical Monitor]] | [[Pseudo-Medical Monitor]] | ||
Revision as of 19:58, 11 December 2021
Hardware Libraries
#include <Wire.h> #include <SPI.h> #include <Adafruit_GFX.h> #include <Adafruit_ST7735.h> #include <Adafruit_VL53L0X.h> #include <Adafruit_AMG88xx.h> #include <MAX30105.h> #include <SparkFunMLX90614.h> #include <DFRobot_ID809.h> #include <SD.h> #include <Adafruit_MPU6050.h> #include <pu2clr_pcf8574.h> #include <TCA9548A.h>
Library Modification
// In this Library : #include <SparkFunMLX90614.h>
//Change the following line in the bool IRTherm::I2CReadWord(byte reg, int16_t * dest) routine.
//
// I2C processing change needed for Arduino Due implementation
//
// Comment Out Line Below
// _i2cPort->requestFrom(_deviceAddress, (uint8_t) 3, (uint8_t) true);
// Add Line Below
_i2cPort->requestFrom(_deviceAddress, (uint8_t) 3, (uint32_t)reg, (uint8_t)1, (uint8_t)true);
Defines - Variables - Routines
Updates Needed
The following code is a mixing and matching of the example code provided by the referenced Special Libraries.
Custom Includes
#include "Configuration_Stuff.h"