- Call Forwarder Examples https://signalwire.com/blogs/developers/build-a-call-forwarder-using-signalwire-relay
- Translate and Transcribe https://github.com/signalwire/signalwire-react-relay-translate-transcribe
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 explorerhat | |
import subprocess | |
import signal | |
import json | |
import time | |
import sys | |
import os |
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 <Servo.h> | |
Servo yservo; | |
Servo xservo; | |
#define LASER_PIN 3 | |
#define X_PIN 10 | |
#define Y_PIN 9 | |
void setup() { |
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
/************************************************************** | |
* | |
* For this example, you need to install PubSubClient library: | |
* https://github.com/knolleary/pubsubclient | |
* or from http://librarymanager/all#PubSubClient | |
* | |
* TinyGSM Getting Started guide: | |
* http://tiny.cc/tiny-gsm-readme | |
* | |
* For more MQTT examples, see PubSubClient library |
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 "WiFiS3.h" | |
#include <ArduinoMqttClient.h> | |
#include <ArduinoJson.h> | |
char ssid[] = ""; // your network SSID (name) | |
char pass[] = ""; // your network password | |
char mqtt_user[] = ""; | |
char mqtt_pass[] = ""; |
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 "WiFiS3.h" | |
#include <ArduinoMqttClient.h> | |
char ssid[] = ""; // your network SSID (name) | |
char pass[] = ""; // your network password | |
char mqtt_user[] = "arduino"; | |
char mqtt_pass[] = "pass"; | |
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
[ | |
{ | |
"id": "fcc22e1b6f5267b7", | |
"type": "tab", | |
"label": "Flow 1", | |
"disabled": false, | |
"info": "", | |
"env": [] | |
}, | |
{ |
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
require('dotenv').config(); | |
let { Voice } = require('@signalwire/realtime-api') | |
const projectId = process.env.SIGNALWIRE_PROJECT_ID | |
const token = process.env.SIGNALWIRE_TOKEN | |
const verifiedNumber = process.env.VERIFIED_NUMBER | |
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
require('dotenv').config(); | |
let { Voice } = require('@signalwire/realtime-api') | |
const projectId = process.env.SIGNALWIRE_PROJECT_ID | |
const token = process.env.SIGNALWIRE_TOKEN | |
const verifiedNumber = process.env.VERIFIED_NUMBER | |
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 <FastLED.h> | |
#include <HX711_ADC.h> | |
//HX711 constructor (dout pin, sck pin) | |
HX711_ADC LoadCell(4, 5); | |
long t; | |
// How many leds in your strip? | |
#define NUM_LEDS 64 |
NewerOlder