This file contains 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 <WiFi.h> | |
/* | |
* Basic code for setting a Dweet with a GET request on an ESP32 | |
* | |
* Original by Liz Miller (www.learnrobotics.org) | |
* Updated for ESP32 by https://gist.github.com/jenschr | |
*/ | |
// WiFi parameters | |
const char* ssid = "your-ssid"; // Replace with your ssid |
This file contains 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 "esp_http_client.h" | |
#include "esp_camera.h" | |
#include <WiFi.h> | |
#include "Arduino.h" | |
#include "Base64.h" | |
#include "mbedtls/base64.h" | |
#include <NTPClient.h> | |
#include <WiFiUdp.h> | |
This file contains 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 React from 'react'; | |
import { useSubscription } from 'mqtt-react-hooks'; | |
export default function Subscriber() { | |
/* Message structure: | |
* topic: string | |
* message: string | |
*/ | |
const { message } = useSubscription([ |
This file contains 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 React from 'react'; | |
import { useMqttState } from 'mqtt-react-hooks'; | |
export default function Status() { | |
/* | |
* Status list | |
* - Offline | |
* - Connected | |
* - Reconnecting |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Socket.IO chat</title> | |
<style> | |
body { margin: 0; padding-bottom: 3rem; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } | |
#form { background: rgba(0, 0, 0, 0.15); padding: 0.25rem; position: fixed; bottom: 0; left: 0; right: 0; display: flex; height: 3rem; box-sizing: border-box; backdrop-filter: blur(10px); } | |
#input { border: none; padding: 0 1rem; flex-grow: 1; border-radius: 2rem; margin: 0.25rem; } | |
#input:focus { outline: none; } |
This file contains 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
const express = require('express'); | |
const app = express(); | |
const http = require('http'); | |
const server = http.createServer(app); | |
const { Server } = require("socket.io"); | |
const io = new Server(server); | |
app.get('/', (req, res) => { | |
res.sendFile(__dirname + '/index.html'); | |
}); |
This file contains 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 logo from './logo.svg'; | |
import './App.css'; | |
import { Connector } from 'mqtt-react-hooks'; | |
import Status from './Status'; | |
const mqttOptions = { | |
username: 'username', | |
password: 'password', // Passwords are buffers | |
} |
This file contains 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
// mqtt-socketio-bridge | |
// | |
// (c) Copyright 2018 MCQN Ltd | |
// | |
var mqtt = require('mqtt') | |
var express = require('express') | |
var app = express() | |
var http = require('http').Server(app) | |
var io = require('socket.io')(http) |
This file contains 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 <SoftwareSerial.h> | |
const byte receivePin = 8; // green cable (RO) | |
const byte transmitPin = 9; // orange cable (DI) | |
const byte receiveEnablePin = 2; // blue cable (RE) | |
const byte RECEIVER_ENABLED = 0; | |
const byte RECEIVER_DISABLED = 1; | |
const byte LED_PIN = 13; |
This file contains 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
int lastVal = 0; | |
long lastKnock = 0; | |
void setup() { | |
Serial.begin( 9600 ); | |
} | |
void loop() { | |
int readVal = analogRead( A2 ); | |
if( readVal > lastVal+5 ){ |