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
#!/usr/bin/env python3.4.10 | |
import argparse | |
import json | |
import os | |
import re | |
import time | |
from datetime import datetime, timedelta | |
from scandir import scandir |
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 <LiquidCrystalRus.h> | |
#include <Keypad.h> | |
const byte KEYPADROWS = 4; // 4 строки | |
const byte KEYPADCOLS = 4; // 4 столбца | |
const unsigned int LCDCHARWIDTH = 20; | |
const unsigned int LCDCHARHEIGHT = 4; | |
const unsigned int MAXSUCCESSCODES = 30; |
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
function myFunction() { | |
var folderlisting = '_Index'; | |
var folder = DriveApp.getRootFolder(); | |
var ssfl = SpreadsheetApp.create(folderlisting); | |
sheet = ssfl.getActiveSheet(); | |
sheet.appendRow(['Name','Url']); | |
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 <LiquidCrystalRus.h> | |
#include <Keypad.h> | |
const byte KEYPADROWS = 4; // 4 строки | |
const byte KEYPADCOLS = 4; // 4 столбца | |
// --------------Пины-------------- | |
// Инициализация дисплея | |
LiquidCrystalRus lcd(6, 7, 8, 9, 10, 11); |