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 /
src /
sense-hat /
examples /
python-sense-hat /
[ HOME SHELL ]
Name
Size
Permission
Action
colour_cycle.py
619
B
-rwxr-xr-x
compass.py
935
B
-rwxr-xr-x
pygame_joystick.py
1.41
KB
-rwxr-xr-x
rainbow.py
1.62
KB
-rwxr-xr-x
rotation.py
640
B
-rwxr-xr-x
space_invader.png
191
B
-rw-r--r--
space_invader.py
121
B
-rwxr-xr-x
text_scroll.py
173
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : colour_cycle.py
#!/usr/bin/python import time from sense_hat import SenseHat sense = SenseHat() r = 255 g = 0 b = 0 msleep = lambda x: time.sleep(x / 1000.0) def next_colour(): global r global g global b if (r == 255 and g < 255 and b == 0): g += 1 if (g == 255 and r > 0 and b == 0): r -= 1 if (g == 255 and b < 255 and r == 0): b += 1 if (b == 255 and g > 0 and r == 0): g -= 1 if (b == 255 and r < 255 and g == 0): r += 1 if (r == 255 and b > 0 and g == 0): b -= 1 while True: sense.clear([r, g, b]) msleep(2) next_colour()
Close