CAPTCHA was last modified: May 19th, 2023 by
Year: 2023
Max Levchin
Max Levchin was last modified: May 19th, 2023 by
Perfboard
Perfboard 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
Mafikizolo
Mafikizolo was last modified: May 7th, 2023 by
Astronomical Observing From the Red Zone
Astronomical Observing From the Red Zone was last modified: May 6th, 2023 by
Astronomical Observing From the Red Zone
Astronomical Observing From the Red Zone was last modified: May 6th, 2023 by
GitHub – TencentARC/GFPGAN: GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration.
GitHub – TencentARC/GFPGAN: GFPGAN aims at developing Practical Algorithms for Real-world Face Restoration. was last modified: May 5th, 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