Govind
Published © CC BY-NC-SA

WiFi Controlled Audio Source Selector Switch (Wi-CASSS)

This WiFi module makes it convenient for the user to switch between two audio sources without the need to swap and insert the audio cables.

AdvancedFull instructions provided8 hours7,006
WiFi Controlled Audio Source Selector Switch (Wi-CASSS)

Things used in this project

Software apps and online services

Blynk
Blynk

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Solder Flux, Soldering
Solder Flux, Soldering
Solder Wire, Lead Free
Solder Wire, Lead Free
Holder, PCB
Holder, PCB

Story

Read more

Schematics

Circuit Diagram

Code

ESP8266 ESP-01 Blynk Code

Arduino
This code must be uploaded to the ESP-01 by the help of a Serial to USB Converter. Code can also be found in File-> Example-> Blynk -> Boards_WiFi -> ESP8266_Standalone
#define BLYNK_PRINT Serial


#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "YourAuthToken";

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "YourNetworkName";
char pass[] = "YourPassword";

void setup()
{
  // Debug console
  Serial.begin(9600);

  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

Credits

Govind

Govind

1 project • 1 follower
I am an electronics hobbyist & and a Do It Yourself Enthusiast.

Comments