This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (setEffect == "Red Green White Loop") { | |
static uint8_t startIndex = 0; | |
startIndex = startIndex + 1; /* higher = faster motion */ | |
Serial.print("x"); | |
// First slide the led in one direction | |
for(int i = 0; i < NUM_LEDS; i++) { | |
// Set the i'th led to red | |
leds[i] = CRGB(255, 0, 0); | |
// Show the leds | |
FastLED.show(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Adafruit_NeoPixel.h> | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#define FASTLED_INTERRUPT_RETRY_COUNT 0 | |
#include <FastLED.h> | |
#include <ArduinoOTA.h> | |
#include <ESP8266mDNS.h> | |
#include <WiFiUdp.h> | |
/************ WIFI and MQTT INFORMATION (CHANGE THESE FOR YOUR SETUP) ******************/ | |
#define wifi_ssid "**" //enter your WIFI SSID |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import os | |
import sys | |
import json | |
import requests | |
import time | |
import platform | |
from lxml import html | |
from plexapi.server import PlexServer | |
from tmdbv3api import TMDb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2020-02-25 10:39:59 ERROR Tautulli WebSocket :: Failed to process session data: 'studio'. | |
2020-02-25 10:39:59 DEBUG Tautulli Pmsconnect :: No children data. | |
2020-02-25 10:39:59 ERROR Tautulli WebSocket :: Failed to process session data: 'studio'. | |
2020-02-25 10:39:59 DEBUG Tautulli Pmsconnect :: No children data. | |
2020-02-25 10:39:49 ERROR Tautulli WebSocket :: Failed to process session data: 'studio'. | |
2020-02-25 10:39:49 DEBUG Tautulli Pmsconnect :: No children data. | |
2020-02-25 10:39:48 ERROR Tautulli WebSocket :: Failed to process session data: 'studio'. | |
2020-02-25 10:39:48 DEBUG Tautulli Pmsconnect :: No children data. | |
2020-02-25 10:39:39 ERROR Tautulli WebSocket :: Failed to process session data: 'studio'. | |
2020-02-25 10:39:39 DEBUG Tautulli Pmsconnect :: No children data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$WW = "C:\Users\$CurrentUser\Desktop\Wolverine\Maize\WolverineWins.txt" | |
$SW = "C:\Users\$CurrentUser\Desktop\Wolverine\Sparty\Green\SpartyWins.txt" #Replace with whatever file you want to do this to. | |
$CurrentUser = $env:UserName #User account to grant permisions too. | |
$Rights = "Read, ReadAndExecute, ListDirectory" #Comma seperated list. | |
$InheritSettings = "Containerinherit, ObjectInherit" #Controls how permissions are inherited by children | |
$PropogationSettings = "None" #Usually set to none but can setup rules that only apply to children. | |
$RuleType = "Allow" #Allow or Deny. | |
function ChangePermWW | |
{ |
OlderNewer