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
/************************************************************* | |
RoboARM Demo | |
(v1.2 - 14/07/2022) | |
Control the RoboARM with two joysticks. | |
> https://www.robocore.net/loja/produtos/braco-robotico-roboarm.html | |
> https://www.robocore.net/loja/produtos/eletronica-braco-robotico-roboarm.html | |
Website: http://robocore.net |
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
/************************************************************* | |
Tratamento-de-Sensores-no-Blynk | |
// Trate a leitura de sensores, mostre valores convertidos e controle o Módulo Relé Serial da RoboCore com o aplicativo Blynk. | |
Produtos e tutoriais: http://robocore.net | |
Siga a RoboCore: http://facebook.com/robocore | |
http://youtube.com/robocore | |
http://instagram.com/robocore | |
__________ | |
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
/************************************************************* | |
Pinos-Virtuais-e-Relay-Serial-no-Blynk | |
// Controle o Módulo Relé Serial da RoboCore com o aplicativo Blynk. | |
Produtos e tutoriais: http://robocore.net | |
Siga a RoboCore: http://facebook.com/robocore | |
http://youtube.com/robocore | |
http://instagram.com/robocore | |
__________ | |
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
#define BLYNK_PRINT Serial | |
#include "ESP8266_Lib.h" | |
#include "BlynkSimpleShieldEsp8266.h" | |
// You should get Auth Token in the Blynk App. | |
// Go to the Project Settings (nut icon). | |
char auth[] = "seu-token-aqui"; | |
// Your WiFi credentials. |
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; |