The Wayback Machine - https://web.archive.org/web/20220208193927/https://github.com/topics/chip
Skip to content
#

chip

Here are 161 public repositories matching this topic...

averelon
averelon commented Aug 7, 2020

The uncompensated temperature of the BMP180 is incorrectly converted to a 16-bit signed value, instead of a 32-bit signed value (long). Since the data is 16-bits wide and can therefore not be negative, the easy fix would be to do the following:

sip.js(1128): uncompensated = uint16(data[0], data[1]);

Please see page 15 of the manual of the BMP180 chip:
https://ae-bst.resource.bosch.com/media

sagar-apple
sagar-apple commented Jun 4, 2020

Problem

The ESP32 example application should be using FreeRTOS tasks(like the EFR32, nRF5 examples) instead of a while loop with a sleep. Because of this it currently needs to poll the buttons to use them.

Proposed Solution

Switch to the AppTask model the other examples use and update the buttons to be interrupt based, if possible.

Improve this page

Add a description, image, and links to the chip topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the chip topic, visit your repo's landing page and select "manage topics."

Learn more