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
void wifiInitialize() { | |
#if DEBUG_WIFI == 1 | |
SERIAL_PRINTLN(F("Initializing Wifi")); | |
#endif | |
pinMode(WIFI_RESET_PIN, OUTPUT); | |
digitalWrite(WIFI_RESET_PIN,HIGH); | |
wifiReset(); | |
Serial1.begin(9600); // used with the wifi | |
SimpleWifi.setUart(&Serial1); // Tell the wifi library that we are not using the SPIUart | |
SimpleWifi.begin(); |
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
server=/.iptvpoc.alu/.discovery.iptv.microsoft.com/.iptv.vodafone.pt/.iptvdiscovery/.ims.vodafone.pt/192.168.1.1 |
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
// (*) All in the spirit of open-source and open-hardware | |
// Janost 2017 Sweden | |
// The Micro-TS Key fob Touch Synthesizer | |
// https://janostman.wordpress.com/the-microts-diy-synth/ | |
// Copyright 2017 DSP Synthesizers Sweden. | |
// | |
// Author: Jan Ostman | |
// |
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
/* Arduino Synth from | |
https://janostman.wordpress.com/2016/01/15/how-to-build-your-very-own-string-synth/ | |
*/ | |
#include <avr/interrupt.h> | |
#include <avr/io.h> | |
#include <avr/pgmspace.h> | |
#ifndef cbi | |
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit)) | |
#endif | |
#ifndef sbi |