This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Arduino.h> | |
#include <Wire.h> | |
#define BME280_ADDRESS 0x76 | |
unsigned short dig_T1, dig_P1; | |
short dig_T2, dig_T3, dig_P2, dig_P3, dig_P4, dig_P5, dig_P6, dig_P7, dig_P8, dig_P9, dig_H2, dig_H4, dig_H5; | |
unsigned char dig_H1, dig_H3; | |
char dig_H6; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM openjdk:8-jdk | |
MAINTAINER Andrew Paramoshkin <[email protected]> | |
ENV ANDROID_TARGET_SDK="24" \ | |
ANDROID_BUILD_TOOLS="24.0.0" \ | |
ANDROID_SDK_TOOLS="24.4.1" \ | |
ANDROID_NDK_VERSION="13" \ | |
PATH="$PWD/android-sdk-linux/tools:$PATH" | |
RUN apt-get --quiet update --yes |