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 { AppVersion } from '@ionic-native/app-version'; | |
import { Market } from "@ionic-native/market"; | |
import { Platform } from 'ionic-angular'; | |
// ... | |
class Blah { |
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
{ | |
"name": "MelhoresDiaristas", | |
"author": "Melhores Diaristas", | |
"homepage": "http://www.melhoresdiaristas.com.br/", | |
"private": true, | |
"scripts": { | |
"clean": "ionic-app-scripts clean", | |
"build": "ionic-app-scripts build", | |
"ionic:build": "ionic-app-scripts build", | |
"ionic:serve": "ionic-app-scripts serve" |
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 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
import 'package:flutter_modular/flutter_modular.dart'; | |
import 'package:asuka/asuka.dart' as asuka show builder; | |
class AppWidget extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
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 <ArduinoOTA.h> | |
const char *ssid = ""; | |
const char *pass = ""; | |
void setup() { | |
Serial.begin(115200); | |
delay(1000); | |
connectWiFi(); |
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 "DHT.h" | |
#define DHT22_PIN 2 | |
#define DHT22_TYPE DHT22 | |
DHT dht22(DHT22_PIN, DHT22_TYPE); | |
#define UV_APIN A0 | |
void setup() { |
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
// ESP 32s DevKit | |
#include <WiFi.h> | |
//#include <HTTPClient.h> | |
#include <DHT.h> | |
String THINGSPEAK_API_KEY = ""; | |
const char *ssid = ""; | |
const char *pass = ""; |
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 <DHT.h> // Including library for dht | |
#include <ESP8266WiFi.h> | |
String THINGSPEAK_API_KEY = "THINGSPEAK_API_KEY"; | |
const char *ssid = "WIFI-SSID"; | |
const char *pass = "WIFI-PASS"; | |
const char *server = "api.thingspeak.com"; |
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 <DHT.h> | |
#include <ESP8266WiFi.h> | |
String THINGSPEAK_API_KEY = "THINGSPEAK_API_KEY"; | |
const char *ssid = "WIFI-SSID"; | |
const char *pass = "WIFI-PASS"; | |
const char *server = "api.thingspeak.com"; |
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 <TinyDHT.h> | |
#define DHTPIN A1 // pino que estamos conectado | |
#define DHTTYPE DHT11 // DHT 11 | |
// Conecte pino 1 do sensor (esquerda) ao +5V | |
// Conecte pino 2 do sensor ao pino de dados definido em seu Arduino | |
// Conecte pino 4 do sensor ao GND | |
// Conecte o resistor de 10K entre pin 2 (dados) | |
// e ao pino 1 (VCC) do sensor |
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
pragma solidity ^0.5.17; | |
pragma experimental ABIEncoderV2; | |
import { StringUtils } from "./StringUtils.sol"; | |
contract EyeContract { | |
string[] internal registeredFiles; | |
string[] internal licenses; |
NewerOlder