- Make a filtering option in the Open Hardware Monitor internal website
- Redesign the internal website
- Redesign the application itself
- Add interesting information to some hardware names (e.g. RAM (16GB) )
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
/* i2c - Example | |
For other examples please check: | |
https://github.com/espressif/esp-idf/tree/master/examples | |
See README.md file to get detailed usage of this example. | |
This example code is in the Public Domain (or CC0 licensed, at your option.) | |
Unless required by applicable law or agreed to in writing, this |
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
#ifndef CRC16_H | |
#define CRC16_H | |
// https://github.com/jantenhove/P1-Meter-ESP8266 | |
#if defined(ARDUINO) && ARDUINO >= 100 | |
#include "Arduino.h" | |
#else | |
#include "WProgram.h" | |
#endif |