git clone -b [TAG] --recursive https://github.com/espressif/esp-idf.git esp-idf-[TAG]
This file contains hidden or 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
| #!/bin/sh | |
| ####################################################### | |
| # | |
| # Edits the proxmox Subscription file to make it | |
| # think that it has a Subscription. | |
| # | |
| # Will disable the annoying login message about | |
| # missing subscription. | |
| # |
This file contains hidden or 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 <cm1106_i2c.h> | |
| CM1106_I2C cm1106_i2c; | |
| void setup() { | |
| cm1106_i2c.begin(); | |
| Serial.begin(9600); | |
| delay(1000); | |
| cm1106_i2c.read_serial_number(); | |
| delay(1000); |