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
import os | |
from osgeo import gdal, ogr, osr | |
import sys | |
def initFields(in_lyr, out_lyr): | |
#Arbitrarily get the first feature | |
feat = in_lyr[0] | |
#loop over each field |
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 <SerialDisplay.h> | |
#include <ArduinoJson.h> | |
#include <ESP8266WiFi.h> | |
#include <WiFiClientSecure.h> | |
char ssid[] = "NOME_DA_REDE"; // sua rede wifi | |
char password[] = "SENHA_DA_REDE"; // sua senha | |
char channelId[] = "ID_DO_CANAL"; // ID do seu canal | |
char apiKey[] = "CHAVE_DA_API"; // chave da API | |
SerialDisplay displays(14, 12, 10); // (data D5, clock D6, qtde de modulos) | |
WiFiClientSecure client; |