https://askubuntu.com/questions/1249108/how-do-i-use-a-huawei-4g-dongle
Engineering and technology notes
How-To configure and setup USB Alcatel LTE Link Key IK40 and Alcatel LTE MW40V – Community Builds, Projects & Packages
How to Tell Which Raspberry Pi I Have?
cat /sys/firmware/devicetree/base/model
Static IP configuration on Debian 8 | Snel.com
5 Easy Ways To Reset A Forgotten Password On Raspberry Pi – RaspberryTips
Left right arrow in termux
Volume Up + a = left
Volume Up + d = right
CAPTCHA
GitHub – muesli/duf: Disk Usage/Free Utility – a better ‘df’ alternative
How to Restore Files from Backup – Veeam Agent for Microsoft Windows Guide
ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals
ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals
#include <Wire.h> #include <Adafruit_Sensor.h> #include <Adafruit_BME280.h> #define I2C_SDA 33 #define I2C_SCL 32 #define SEALEVELPRESSURE_HPA (1013.25) TwoWire I2CBME = TwoWire(0); Adafruit_BME280 bme; unsigned long delayTime; void setup() { Serial.begin(115200); Serial.println(F("BME280 test")); I2CBME.begin(I2C_SDA, I2C_SCL, 100000); bool status; // default settings // (you can also pass in a Wire library object like &Wire2) status = bme.begin(0x76, &I2CBME); if (!status) { Serial.println("Could not find a valid BME280 sensor, check wiring!"); while (1); } Serial.println("-- Default Test --"); delayTime = 1000; Serial.println(); } void loop() { printValues(); delay(delayTime); } void printValues() { Serial.print("Temperature = "); Serial.print(bme.readTemperature()); Serial.println(" *C"); // Convert temperature to Fahrenheit /*Serial.print("Temperature = "); Serial.print(1.8 * bme.readTemperature() + 32); Serial.println(" *F");*/ Serial.print("Pressure = "); Serial.print(bme.readPressure() / 100.0F); Serial.println(" hPa"); Serial.print("Approx. Altitude = "); Serial.print(bme.readAltitude(SEALEVELPRESSURE_HPA)); Serial.println(" m"); Serial.print("Humidity = "); Serial.print(bme.readHumidity()); Serial.println(" %"); Serial.println(); }
Source: ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals | Random Nerd Tutorials