This file contains hidden or 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
tasks: | |
task_name: | |
#use http://www.iptorrents.com/getrss.php to get the RSS link, make sure to select download link option | |
rss: http://www.iptorrents.com/torrents/rss?download;l78;u=xxxx;tp=xxxxxxxx | |
set: | |
ut_path: D:\torrents\ | |
import_series: | |
from: | |
trakt_list: | |
username: xxxxxx |
This file contains hidden or 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 the library code: | |
#include <LiquidCrystal.h> | |
// initialize the library with the numbers of the interface pins | |
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); | |
void setup() { | |
Serial.begin(9600); | |
lcd.begin(16, 2); | |
lcd.print("start"); |