├── .gitignore ├── AbsoluteChange └── AbsoluteChange.ino ├── Accelerometers ├── ADXL33xAccelerometer │ ├── AccelerometerADXL326 │ │ └── AccelerometerADXL326.ino │ └── AccelerometerADXL335 │ │ └── AccelerometerADXL335.ino ├── Arduino_LSM6DS3 │ └── AccelOrientation │ │ └── AccelOrientation.ino ├── LIS3DHAccelerometer │ ├── LIS3DHAccelerometer │ │ └── LIS3DHAccelerometer.ino │ ├── LIS3DHAccelerometerADC │ │ └── LIS3DHAccelerometerADC.ino │ └── LIS3DHAccelerometerTap │ │ └── LIS3DHAccelerometerTap.ino ├── MMA8451Accelerometer │ └── MMA8451Accelerometer.ino └── readme.md ├── BournsMotorizedPotPRM ├── MotorPotTarget │ └── MotorPotTarget.ino ├── MotorizedPot_bb.png ├── MotorizedPot_bb.svg ├── MotorizedPot_schem.png ├── MotorizedPot_schem.svg ├── motorPotWipe │ └── motorPotWipe.ino └── readme.md ├── Encoders ├── Encoder_Button_Steps │ └── Encoder_Button_Steps.ino ├── Encoder_HapticMotorDriver │ ├── Encoder_HapticMotorDriver.ino │ └── readme.md ├── Encoder_LedFade │ └── Encoder_LedFade.ino └── Encoder_reset │ └── Encoder_reset.ino ├── EnvironmentalSensors ├── CCS811_CO2_sensor │ └── CCS811_CO2_sensor.ino ├── CCS811_CO2_sensor_OLED │ └── CCS811_CO2_sensor_OLED.ino ├── CCS811_CO2_sensor_SFE │ └── CCS811_CO2_sensor_SFE.ino ├── ENS160 │ ├── ENS160_AQISensor │ │ └── ENS160_AQISensor.ino │ └── ENS160_AQISensor_SHTC3 │ │ └── ENS160_AQISensor_SHTC3.ino ├── PMS5003_AQI_sensor │ ├── PMS5003AQISensorRead │ │ └── PMS5003AQISensorRead.ino │ ├── PMS5003AQITimedRead │ │ └── PMS5003AQITimedRead.ino │ ├── buffer_read_test │ │ └── buffer_read_test.ino │ ├── img │ │ └── macos_calc_0x224.png │ ├── readme.md │ └── simple_read_test │ │ └── simple_read_test.ino ├── TempHumiditySensors │ └── TempHumiditySensors.ino └── TempHumiditySensorsTyping │ └── TempHumiditySensorsTyping.ino ├── FilterStatsToSerialPlusWeighted └── FilterStatsToSerialPlusWeighted.ino ├── ForceSensingPotentiometer ├── FSP01CE-FSP02CE_example │ └── FSP01CE-FSP02CE_example.ino ├── FSP01CE-FSP02CE_example_with_screen │ └── FSP01CE-FSP02CE_example_with_screen.ino ├── FSP03CE_example │ └── FSP03CE_example.ino ├── img │ ├── FSP-schematic.png │ ├── fritzing_files │ │ ├── FSP-schematic.svg │ │ ├── nano_FSP01-2CE_bb.svg │ │ └── nano_FSP03CE_bb.svg │ ├── nano_FSP01-2CE_bb.png │ └── nano_FSP03CE_bb.png └── readme.md ├── HeartRateSensors └── MAX3010x │ └── Max3010x_SPO2 │ └── License.ino ├── Joystick ├── Joystick.ino └── README.md ├── KalmanFilter └── KalmanFilter.ino ├── LICENSE.md ├── LightSensors ├── AMS6265x_SD_datalogger │ ├── AMS6265x_SD_datalogger.ino │ └── arduino_secrets.h ├── APDS9301_basic │ ├── APDS9301_basic.ino │ └── readme.md ├── APDS9301_interrupts │ ├── APDS9301_interrupts.ino │ └── readme.md ├── APDS9960_GestureMouse │ └── APDS9960_GestureMouse.ino ├── AS7262_Sparkfun │ └── AS7262_Sparkfun.ino ├── AS7263_Sparkfun │ └── AS7263_Sparkfun.ino ├── AS7265x_spectrometer │ ├── AS7265x.json │ └── AS7265x_spectrometer.ino ├── AS7341_Spectrometer │ ├── AS7341.json │ ├── AS7341_2.json │ └── AS7341_Spectrometer.ino ├── GA1AS202LightSensor │ └── GA1AS202LightSensor.ino ├── ISL29125_CCT │ └── ISL29125_CCT.ino ├── ISL29125_OLED_Example │ └── ISL29125_OLED_Example.ino ├── TCS34725_ColorRead │ ├── ColorDisplayer │ │ └── ColorDisplayer.pde │ ├── TCS34725_circuit_bb.png │ ├── TCS34725_circuit_bb.svg │ ├── TCS34725_read │ │ └── TCS34725_read.ino │ └── readme.md ├── TCS34725_RGBSensor │ ├── TCS34725_RGBSensor.ino │ ├── TCS34725_circuit_bb.png │ ├── TCS34725_circuit_bb.svg │ ├── TCS34725_circuit_schem.png │ ├── TCS34725_circuit_schem.svg │ └── readme.md ├── TCS34725_RGBSensor_OLED │ ├── TCS34725_OLED_circuit_bb.png │ ├── TCS34725_OLED_circuit_bb.svg │ ├── TCS34725_OLED_circuit_schem.png │ ├── TCS34725_OLED_circuit_schem.svg │ ├── TCS34725_RGBSensor_OLED.ino │ └── readme.md ├── TSL2591LightSensor │ └── TSL2591LightSensor.ino ├── readme.md └── spectral-sensors.md ├── Mini_TrackBall_Mouse └── Mini_TrackBall_Mouse.ino ├── PIRSensor ├── PIRSensor.ino └── readme.md ├── PeakDetection └── PeakDetection.ino ├── PolarHeartBeatReceiver └── PolarHeartBeatReceiver.ino ├── PotentiometerChange └── PotentiometerChange.ino ├── PressureSensorMPX2102 ├── MPX2102_Sensor_circuit_bb.png ├── MPX2102_Sensor_circuit_bb.svg ├── MPX2102_Sensor_circuit_schem.png ├── MPX2102_Sensor_circuit_schem.svg ├── PressureSensorMPX2102.ino └── readme.md ├── RotarySwitch └── RotarySwitch.ino ├── SoftPot └── SoftPot.ino ├── TMP36 └── TMP36.ino ├── TMP36Datalogger └── TMP36Datalogger.ino ├── ThumbJoystick └── ThumbJoystick.ino ├── TimeOfFlightSensors ├── VL53L0x_intro │ └── VL53L0x_intro.ino ├── VL53L1X_GetDirection │ └── VL53L1X_GetDirection.ino ├── VL53L1X_OffsetCalibration │ └── VL53L1X_OffsetCalibration.ino ├── VL53L1X_SetROI │ └── VL53L1X_SetROI.ino ├── VL53L1X_config │ └── VL53L1X_config.ino ├── VL53L1X_distance │ └── VL53L1X_distance.ino └── VL53L1X_errors │ └── VL53L1X_errors.ino ├── WifiOfficeSensorsPachube └── WifiOfficeSensorsPachube.ino ├── _config.yml ├── potentiometer_HapticMotorDriver └── potentiometer_HapticMotorDriver.ino └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/.gitignore -------------------------------------------------------------------------------- /AbsoluteChange/AbsoluteChange.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/AbsoluteChange/AbsoluteChange.ino -------------------------------------------------------------------------------- /Accelerometers/ADXL33xAccelerometer/AccelerometerADXL326/AccelerometerADXL326.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/ADXL33xAccelerometer/AccelerometerADXL326/AccelerometerADXL326.ino -------------------------------------------------------------------------------- /Accelerometers/ADXL33xAccelerometer/AccelerometerADXL335/AccelerometerADXL335.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/ADXL33xAccelerometer/AccelerometerADXL335/AccelerometerADXL335.ino -------------------------------------------------------------------------------- /Accelerometers/Arduino_LSM6DS3/AccelOrientation/AccelOrientation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/Arduino_LSM6DS3/AccelOrientation/AccelOrientation.ino -------------------------------------------------------------------------------- /Accelerometers/LIS3DHAccelerometer/LIS3DHAccelerometer/LIS3DHAccelerometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/LIS3DHAccelerometer/LIS3DHAccelerometer/LIS3DHAccelerometer.ino -------------------------------------------------------------------------------- /Accelerometers/LIS3DHAccelerometer/LIS3DHAccelerometerADC/LIS3DHAccelerometerADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/LIS3DHAccelerometer/LIS3DHAccelerometerADC/LIS3DHAccelerometerADC.ino -------------------------------------------------------------------------------- /Accelerometers/LIS3DHAccelerometer/LIS3DHAccelerometerTap/LIS3DHAccelerometerTap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/LIS3DHAccelerometer/LIS3DHAccelerometerTap/LIS3DHAccelerometerTap.ino -------------------------------------------------------------------------------- /Accelerometers/MMA8451Accelerometer/MMA8451Accelerometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/MMA8451Accelerometer/MMA8451Accelerometer.ino -------------------------------------------------------------------------------- /Accelerometers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Accelerometers/readme.md -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/MotorPotTarget/MotorPotTarget.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/MotorPotTarget/MotorPotTarget.ino -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/MotorizedPot_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/MotorizedPot_bb.png -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/MotorizedPot_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/MotorizedPot_bb.svg -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/MotorizedPot_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/MotorizedPot_schem.png -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/MotorizedPot_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/MotorizedPot_schem.svg -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/motorPotWipe/motorPotWipe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/motorPotWipe/motorPotWipe.ino -------------------------------------------------------------------------------- /BournsMotorizedPotPRM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/BournsMotorizedPotPRM/readme.md -------------------------------------------------------------------------------- /Encoders/Encoder_Button_Steps/Encoder_Button_Steps.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Encoders/Encoder_Button_Steps/Encoder_Button_Steps.ino -------------------------------------------------------------------------------- /Encoders/Encoder_HapticMotorDriver/Encoder_HapticMotorDriver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Encoders/Encoder_HapticMotorDriver/Encoder_HapticMotorDriver.ino -------------------------------------------------------------------------------- /Encoders/Encoder_HapticMotorDriver/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Encoders/Encoder_HapticMotorDriver/readme.md -------------------------------------------------------------------------------- /Encoders/Encoder_LedFade/Encoder_LedFade.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Encoders/Encoder_LedFade/Encoder_LedFade.ino -------------------------------------------------------------------------------- /Encoders/Encoder_reset/Encoder_reset.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Encoders/Encoder_reset/Encoder_reset.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/CCS811_CO2_sensor/CCS811_CO2_sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/CCS811_CO2_sensor/CCS811_CO2_sensor.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/CCS811_CO2_sensor_OLED/CCS811_CO2_sensor_OLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/CCS811_CO2_sensor_OLED/CCS811_CO2_sensor_OLED.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/CCS811_CO2_sensor_SFE/CCS811_CO2_sensor_SFE.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/CCS811_CO2_sensor_SFE/CCS811_CO2_sensor_SFE.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/ENS160/ENS160_AQISensor/ENS160_AQISensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/ENS160/ENS160_AQISensor/ENS160_AQISensor.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/ENS160/ENS160_AQISensor_SHTC3/ENS160_AQISensor_SHTC3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/ENS160/ENS160_AQISensor_SHTC3/ENS160_AQISensor_SHTC3.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/PMS5003_AQI_sensor/PMS5003AQISensorRead/PMS5003AQISensorRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/PMS5003_AQI_sensor/PMS5003AQISensorRead/PMS5003AQISensorRead.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/PMS5003_AQI_sensor/PMS5003AQITimedRead/PMS5003AQITimedRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/PMS5003_AQI_sensor/PMS5003AQITimedRead/PMS5003AQITimedRead.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/PMS5003_AQI_sensor/buffer_read_test/buffer_read_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/PMS5003_AQI_sensor/buffer_read_test/buffer_read_test.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/PMS5003_AQI_sensor/img/macos_calc_0x224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/PMS5003_AQI_sensor/img/macos_calc_0x224.png -------------------------------------------------------------------------------- /EnvironmentalSensors/PMS5003_AQI_sensor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/PMS5003_AQI_sensor/readme.md -------------------------------------------------------------------------------- /EnvironmentalSensors/PMS5003_AQI_sensor/simple_read_test/simple_read_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/PMS5003_AQI_sensor/simple_read_test/simple_read_test.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/TempHumiditySensors/TempHumiditySensors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/TempHumiditySensors/TempHumiditySensors.ino -------------------------------------------------------------------------------- /EnvironmentalSensors/TempHumiditySensorsTyping/TempHumiditySensorsTyping.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/EnvironmentalSensors/TempHumiditySensorsTyping/TempHumiditySensorsTyping.ino -------------------------------------------------------------------------------- /FilterStatsToSerialPlusWeighted/FilterStatsToSerialPlusWeighted.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/FilterStatsToSerialPlusWeighted/FilterStatsToSerialPlusWeighted.ino -------------------------------------------------------------------------------- /ForceSensingPotentiometer/FSP01CE-FSP02CE_example/FSP01CE-FSP02CE_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/FSP01CE-FSP02CE_example/FSP01CE-FSP02CE_example.ino -------------------------------------------------------------------------------- /ForceSensingPotentiometer/FSP01CE-FSP02CE_example_with_screen/FSP01CE-FSP02CE_example_with_screen.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/FSP01CE-FSP02CE_example_with_screen/FSP01CE-FSP02CE_example_with_screen.ino -------------------------------------------------------------------------------- /ForceSensingPotentiometer/FSP03CE_example/FSP03CE_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/FSP03CE_example/FSP03CE_example.ino -------------------------------------------------------------------------------- /ForceSensingPotentiometer/img/FSP-schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/img/FSP-schematic.png -------------------------------------------------------------------------------- /ForceSensingPotentiometer/img/fritzing_files/FSP-schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/img/fritzing_files/FSP-schematic.svg -------------------------------------------------------------------------------- /ForceSensingPotentiometer/img/fritzing_files/nano_FSP01-2CE_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/img/fritzing_files/nano_FSP01-2CE_bb.svg -------------------------------------------------------------------------------- /ForceSensingPotentiometer/img/fritzing_files/nano_FSP03CE_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/img/fritzing_files/nano_FSP03CE_bb.svg -------------------------------------------------------------------------------- /ForceSensingPotentiometer/img/nano_FSP01-2CE_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/img/nano_FSP01-2CE_bb.png -------------------------------------------------------------------------------- /ForceSensingPotentiometer/img/nano_FSP03CE_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/img/nano_FSP03CE_bb.png -------------------------------------------------------------------------------- /ForceSensingPotentiometer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ForceSensingPotentiometer/readme.md -------------------------------------------------------------------------------- /HeartRateSensors/MAX3010x/Max3010x_SPO2/License.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/HeartRateSensors/MAX3010x/Max3010x_SPO2/License.ino -------------------------------------------------------------------------------- /Joystick/Joystick.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Joystick/Joystick.ino -------------------------------------------------------------------------------- /Joystick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Joystick/README.md -------------------------------------------------------------------------------- /KalmanFilter/KalmanFilter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/KalmanFilter/KalmanFilter.ino -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LightSensors/AMS6265x_SD_datalogger/AMS6265x_SD_datalogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AMS6265x_SD_datalogger/AMS6265x_SD_datalogger.ino -------------------------------------------------------------------------------- /LightSensors/AMS6265x_SD_datalogger/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AMS6265x_SD_datalogger/arduino_secrets.h -------------------------------------------------------------------------------- /LightSensors/APDS9301_basic/APDS9301_basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/APDS9301_basic/APDS9301_basic.ino -------------------------------------------------------------------------------- /LightSensors/APDS9301_basic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/APDS9301_basic/readme.md -------------------------------------------------------------------------------- /LightSensors/APDS9301_interrupts/APDS9301_interrupts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/APDS9301_interrupts/APDS9301_interrupts.ino -------------------------------------------------------------------------------- /LightSensors/APDS9301_interrupts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/APDS9301_interrupts/readme.md -------------------------------------------------------------------------------- /LightSensors/APDS9960_GestureMouse/APDS9960_GestureMouse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/APDS9960_GestureMouse/APDS9960_GestureMouse.ino -------------------------------------------------------------------------------- /LightSensors/AS7262_Sparkfun/AS7262_Sparkfun.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7262_Sparkfun/AS7262_Sparkfun.ino -------------------------------------------------------------------------------- /LightSensors/AS7263_Sparkfun/AS7263_Sparkfun.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7263_Sparkfun/AS7263_Sparkfun.ino -------------------------------------------------------------------------------- /LightSensors/AS7265x_spectrometer/AS7265x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7265x_spectrometer/AS7265x.json -------------------------------------------------------------------------------- /LightSensors/AS7265x_spectrometer/AS7265x_spectrometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7265x_spectrometer/AS7265x_spectrometer.ino -------------------------------------------------------------------------------- /LightSensors/AS7341_Spectrometer/AS7341.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7341_Spectrometer/AS7341.json -------------------------------------------------------------------------------- /LightSensors/AS7341_Spectrometer/AS7341_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7341_Spectrometer/AS7341_2.json -------------------------------------------------------------------------------- /LightSensors/AS7341_Spectrometer/AS7341_Spectrometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/AS7341_Spectrometer/AS7341_Spectrometer.ino -------------------------------------------------------------------------------- /LightSensors/GA1AS202LightSensor/GA1AS202LightSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/GA1AS202LightSensor/GA1AS202LightSensor.ino -------------------------------------------------------------------------------- /LightSensors/ISL29125_CCT/ISL29125_CCT.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/ISL29125_CCT/ISL29125_CCT.ino -------------------------------------------------------------------------------- /LightSensors/ISL29125_OLED_Example/ISL29125_OLED_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/ISL29125_OLED_Example/ISL29125_OLED_Example.ino -------------------------------------------------------------------------------- /LightSensors/TCS34725_ColorRead/ColorDisplayer/ColorDisplayer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_ColorRead/ColorDisplayer/ColorDisplayer.pde -------------------------------------------------------------------------------- /LightSensors/TCS34725_ColorRead/TCS34725_circuit_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_ColorRead/TCS34725_circuit_bb.png -------------------------------------------------------------------------------- /LightSensors/TCS34725_ColorRead/TCS34725_circuit_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_ColorRead/TCS34725_circuit_bb.svg -------------------------------------------------------------------------------- /LightSensors/TCS34725_ColorRead/TCS34725_read/TCS34725_read.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_ColorRead/TCS34725_read/TCS34725_read.ino -------------------------------------------------------------------------------- /LightSensors/TCS34725_ColorRead/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_ColorRead/readme.md -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor/TCS34725_RGBSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor/TCS34725_RGBSensor.ino -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor/TCS34725_circuit_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor/TCS34725_circuit_bb.png -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor/TCS34725_circuit_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor/TCS34725_circuit_bb.svg -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor/TCS34725_circuit_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor/TCS34725_circuit_schem.png -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor/TCS34725_circuit_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor/TCS34725_circuit_schem.svg -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor/readme.md -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_bb.png -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_bb.svg -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_schem.png -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor_OLED/TCS34725_OLED_circuit_schem.svg -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor_OLED/TCS34725_RGBSensor_OLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor_OLED/TCS34725_RGBSensor_OLED.ino -------------------------------------------------------------------------------- /LightSensors/TCS34725_RGBSensor_OLED/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TCS34725_RGBSensor_OLED/readme.md -------------------------------------------------------------------------------- /LightSensors/TSL2591LightSensor/TSL2591LightSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/TSL2591LightSensor/TSL2591LightSensor.ino -------------------------------------------------------------------------------- /LightSensors/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/readme.md -------------------------------------------------------------------------------- /LightSensors/spectral-sensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/LightSensors/spectral-sensors.md -------------------------------------------------------------------------------- /Mini_TrackBall_Mouse/Mini_TrackBall_Mouse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/Mini_TrackBall_Mouse/Mini_TrackBall_Mouse.ino -------------------------------------------------------------------------------- /PIRSensor/PIRSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PIRSensor/PIRSensor.ino -------------------------------------------------------------------------------- /PIRSensor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PIRSensor/readme.md -------------------------------------------------------------------------------- /PeakDetection/PeakDetection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PeakDetection/PeakDetection.ino -------------------------------------------------------------------------------- /PolarHeartBeatReceiver/PolarHeartBeatReceiver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PolarHeartBeatReceiver/PolarHeartBeatReceiver.ino -------------------------------------------------------------------------------- /PotentiometerChange/PotentiometerChange.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PotentiometerChange/PotentiometerChange.ino -------------------------------------------------------------------------------- /PressureSensorMPX2102/MPX2102_Sensor_circuit_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PressureSensorMPX2102/MPX2102_Sensor_circuit_bb.png -------------------------------------------------------------------------------- /PressureSensorMPX2102/MPX2102_Sensor_circuit_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PressureSensorMPX2102/MPX2102_Sensor_circuit_bb.svg -------------------------------------------------------------------------------- /PressureSensorMPX2102/MPX2102_Sensor_circuit_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PressureSensorMPX2102/MPX2102_Sensor_circuit_schem.png -------------------------------------------------------------------------------- /PressureSensorMPX2102/MPX2102_Sensor_circuit_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PressureSensorMPX2102/MPX2102_Sensor_circuit_schem.svg -------------------------------------------------------------------------------- /PressureSensorMPX2102/PressureSensorMPX2102.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PressureSensorMPX2102/PressureSensorMPX2102.ino -------------------------------------------------------------------------------- /PressureSensorMPX2102/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/PressureSensorMPX2102/readme.md -------------------------------------------------------------------------------- /RotarySwitch/RotarySwitch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/RotarySwitch/RotarySwitch.ino -------------------------------------------------------------------------------- /SoftPot/SoftPot.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/SoftPot/SoftPot.ino -------------------------------------------------------------------------------- /TMP36/TMP36.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TMP36/TMP36.ino -------------------------------------------------------------------------------- /TMP36Datalogger/TMP36Datalogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TMP36Datalogger/TMP36Datalogger.ino -------------------------------------------------------------------------------- /ThumbJoystick/ThumbJoystick.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/ThumbJoystick/ThumbJoystick.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L0x_intro/VL53L0x_intro.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L0x_intro/VL53L0x_intro.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L1X_GetDirection/VL53L1X_GetDirection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L1X_GetDirection/VL53L1X_GetDirection.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L1X_OffsetCalibration/VL53L1X_OffsetCalibration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L1X_OffsetCalibration/VL53L1X_OffsetCalibration.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L1X_SetROI/VL53L1X_SetROI.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L1X_SetROI/VL53L1X_SetROI.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L1X_config/VL53L1X_config.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L1X_config/VL53L1X_config.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L1X_distance/VL53L1X_distance.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L1X_distance/VL53L1X_distance.ino -------------------------------------------------------------------------------- /TimeOfFlightSensors/VL53L1X_errors/VL53L1X_errors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/TimeOfFlightSensors/VL53L1X_errors/VL53L1X_errors.ino -------------------------------------------------------------------------------- /WifiOfficeSensorsPachube/WifiOfficeSensorsPachube.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/WifiOfficeSensorsPachube/WifiOfficeSensorsPachube.ino -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/_config.yml -------------------------------------------------------------------------------- /potentiometer_HapticMotorDriver/potentiometer_HapticMotorDriver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/potentiometer_HapticMotorDriver/potentiometer_HapticMotorDriver.ino -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/SensorExamples/HEAD/readme.md --------------------------------------------------------------------------------