All Projects → LAtimes2 → InternalTemperature

LAtimes2 / InternalTemperature

Licence: other
Teensy 4/3/LC Internal Temperature Library

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to InternalTemperature

Onewirehub
OneWire slave device emulator
Stars: ✭ 195 (+1118.75%)
Mutual labels:  teensy, temperature
asus-fan
Kernel module to get/set (both) fan speed(s) on ASUS Zenbooks
Stars: ✭ 92 (+475%)
Mutual labels:  temperature
raspberrypi-temperature-telegraf
Collect RaspberryPi CPU and GPU temperature with telegraf
Stars: ✭ 80 (+400%)
Mutual labels:  temperature
drone-stm32-map
STM32 peripheral mappings for Drone, an Embedded Operating System.
Stars: ✭ 16 (+0%)
Mutual labels:  cortex
elfloader
ARMv7M ELF loader
Stars: ✭ 71 (+343.75%)
Mutual labels:  cortex
pipeVFX
A Visual Effects pipeline to manage jobs, shots and software assignment, with a simple asset manager. Its extensively integrated with CortexVFX and Gaffer. (and it builds booth, with support for Maya, Houdini and Nuke, if you have then installed!)
Stars: ✭ 47 (+193.75%)
Mutual labels:  cortex
iltms teensy lightsaber v1
This is the code to accompany the lightsaber project at http://www.iliketomakestuff.com/make-lightsaber/ Expected hardware is listed in post (Teensy 3.2, Prop Shield, DotStar LEDs)
Stars: ✭ 28 (+75%)
Mutual labels:  teensy
pan-cortex-data-lake-python
Python idiomatic SDK for Cortex™ Data Lake.
Stars: ✭ 36 (+125%)
Mutual labels:  cortex
S1EM
This project is a SIEM with SIRP and Threat Intel, all in one.
Stars: ✭ 270 (+1587.5%)
Mutual labels:  cortex
MPU-9250-Sensors-Data-Collect
MPU9250 (MPU6500 + AK8963) I2C Driver in Python for Raspbery PI
Stars: ✭ 51 (+218.75%)
Mutual labels:  temperature
TeensyDMX
A full-featured DMX library for Teensy 3, Teensy LC, and Teensy 4. "Programmable DMX and arbitrary USB serial device emulation."
Stars: ✭ 82 (+412.5%)
Mutual labels:  teensy
Arduino-USBMIDI
Allows a microcontroller, with native USB capabilities, to appear as a MIDI device over USB to a connected computer
Stars: ✭ 98 (+512.5%)
Mutual labels:  teensy
ioTank
Indoor environment monitor based on Esp8266
Stars: ✭ 15 (-6.25%)
Mutual labels:  temperature
aprs-weather-submit
Manually submit weather station information to the APRS-IS network.
Stars: ✭ 17 (+6.25%)
Mutual labels:  temperature
BME680
Arduino Library to access the Bosch BME680 - temperature, pressure, humidity and gas sensor
Stars: ✭ 30 (+87.5%)
Mutual labels:  temperature
WiFiNINA Generic
Enables WiFiNINA network connection (local and Internet) for SAM DUE, SAMD21, SAMD51, Teensy, AVR Mega, STM32, RP2040-based boards, etc. in addition to Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000, Arduino UNO WiFi Rev.2 , Nano 33 IoT, Nano_RP2040_Connect. Now with fix of severe limitation to permit sending much larger data than total 4K
Stars: ✭ 32 (+100%)
Mutual labels:  teensy
mcp9600
mcp9600 full function driver
Stars: ✭ 22 (+37.5%)
Mutual labels:  temperature
arduino-bme280
💧 Arduino library for Bosch Sensortec BME280 – combined temperature, pressure, humidity sensor. The library allows using the sensor over I2C or SPI on any board that supports Arduino.
Stars: ✭ 25 (+56.25%)
Mutual labels:  temperature
EncoderTool
The EncoderTool is a library to manage and read out rotary encoders connected either directly or via multiplexers to ARM based boards. Encoder push buttons are supported. Callback functions can be attached to encoder changes and button presses to allow for event driven applications
Stars: ✭ 29 (+81.25%)
Mutual labels:  teensy
cortex-helm-chart
Helm chart for Cortex
Stars: ✭ 134 (+737.5%)
Mutual labels:  cortex

InternalTemperature


The Kinetis Cortex-M processor on the Teensy 3/LC boards has a built-in temperature sensor. This library provides functions to read the temperature in both Celsius and Fahrenheit.

The Teensy 4 has a built-in temperature sensor, along with built-in functions to read temperature. This library provides a wrapper around the built-in functions (to support common code for Teensy 3 and 4).

In addition, the library has high and low temperature alarm functions to perform actions when temperature limits are exceeded.

Examples are provided to show how to read temperatures, set alarms, and, for Teensy 4, change the CPU clock speed based on temperature.

Here is a simple example of how to read the temperature:

#include <InternalTemperature.h>

void setup()
{
}

void loop()
{
  float temp = InternalTemperature.readTemperatureC();
}

For more details and information on calibration, see

https://github.com/LAtimes2/InternalTemperature/blob/master/InternalTemperature.pdf

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].