https://askubuntu.com/questions/1249108/how-do-i-use-a-huawei-4g-dongle
Engineering and technology notes
networking – How do I use a Huawei 4g dongle? was last modified: June 1st, 2023 by
How-To configure and setup USB Alcatel LTE Link Key IK40 and Alcatel LTE MW40V – Community Builds, Projects & Packages
How-To configure and setup USB Alcatel LTE Link Key IK40 and Alcatel LTE MW40V – Community Builds, Projects & Packages was last modified: May 31st, 2023 by
How to Tell Which Raspberry Pi I Have?
cat /sys/firmware/devicetree/base/model
Source: How to Tell Which Raspberry Pi I Have?
How to Tell Which Raspberry Pi I Have? was last modified: May 30th, 2023 by
Static IP configuration on Debian 8 | Snel.com
Source: Static IP configuration on Debian 8 | Snel.com
Static IP configuration on Debian 8 | Snel.com was last modified: May 30th, 2023 by
5 Easy Ways To Reset A Forgotten Password On Raspberry Pi – RaspberryTips
Source: 5 Easy Ways To Reset A Forgotten Password On Raspberry Pi – RaspberryTips
5 Easy Ways To Reset A Forgotten Password On Raspberry Pi – RaspberryTips was last modified: May 31st, 2023 by
Left right arrow in termux
Volume Up + a = left
Volume Up + d = right
Left right arrow in termux was last modified: May 21st, 2023 by
CAPTCHA
CAPTCHA was last modified: May 19th, 2023 by
GitHub – muesli/duf: Disk Usage/Free Utility – a better ‘df’ alternative
LXF302
GitHub – muesli/duf: Disk Usage/Free Utility – a better ‘df’ alternative was last modified: May 13th, 2023 by
How to Restore Files from Backup – Veeam Agent for Microsoft Windows Guide
https://helpcenter.veeam.com/docs/agentforwindows/userguide/howto_restore_files.html?ver=60
How to Restore Files from Backup – Veeam Agent for Microsoft Windows Guide was last modified: May 11th, 2023 by
ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals
Source: ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals | Random Nerd Tutorials
ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals was last modified: May 8th, 2023 by
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
ESP32 I2C Communication: Set Pins, Multiple Bus Interfaces and Peripherals was last modified: May 4th, 2023 by
GitHub – xanthium-enterprises/usb-to-serial-rs485-Converter-non-isolated: USB2RS485 V2.2 is a FT232RL based USB to Serial/RS485 Converter for interfacing RS485 controlled devices with your PC or Mac
https://github.com/xanthium-enterprises/usb-to-serial-rs485-Converter-non-isolated
GitHub – xanthium-enterprises/usb-to-serial-rs485-Converter-non-isolated: USB2RS485 V2.2 is a FT232RL based USB to Serial/RS485 Converter for interfacing RS485 controlled devices with your PC or Mac was last modified: May 4th, 2023 by