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
#!/bin/bash | |
set -x | |
set -e | |
BFG_URL="http://repo1.maven.org/maven2/com/madgag/bfg/1.12.8/bfg-1.12.8.jar" | |
BFG_BIN=`basename ${BFG_URL}` | |
BFG="/tmp/${BFG_BIN}" | |
[[ -n "$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
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.95.1/css/materialize.min.css"> | |
<div class="container"> | |
<div class="row"> | |
<nav> | |
<div class="nav-wrapper"> | |
<div class="col s12"> | |
<a href="#" class="brand-logo">Text to speech example</a> | |
</div> | |
</div> |
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
import network | |
import socket | |
from time import sleep | |
from picozero import pico_temp_sensor, pico_led | |
import machine | |
import _thread | |
ssid='' # your network name here | |
password='' # your network password here |