How to flash your ESP8266 without a USB-Serial adapter but with an Arduino.
First be sure everything is connected correcly:
| Arduino | ESP82666 |
|---|---|
| TX | RX |
| RX | TX |
| GND | GND |
| GND | GPIO-15 |
How to flash your ESP8266 without a USB-Serial adapter but with an Arduino.
First be sure everything is connected correcly:
| Arduino | ESP82666 |
|---|---|
| TX | RX |
| RX | TX |
| GND | GND |
| GND | GPIO-15 |
| from PyQt5.QtWidgets import QApplication, QMainWindow, QDialog, QHBoxLayout | |
| #from PyQt5.QtCore import SIGNAL | |
| from Koo.Rpc import Rpc | |
| from Koo.Common import Api | |
| from Koo.Common import Localization | |
| Localization.initializeTranslations() | |
| from Koo.Dialogs import WindowService | |
| x = Rpc.session.login('http://admin:admin@localhost:8069', 'test_1519123854') |
| from PyQt5.QtWidgets import QSlider, QDialog, QLabel, QHBoxLayout | |
| from PyQt5.QtCore import Qt, pyqtSignal | |
| class Slider_Dialog(QDialog): | |
| changedValue = pyqtSignal(int) | |
| def __init__(self): | |
| super(Slider_Dialog, self).__init__() | |
| self.init_ui() |
| #!/bin/sh | |
| ## Patch network hibernation issues | |
| ## Save it in /usr/lib/systemd/system-sleep | |
| ## Thanks to nivenly.com/surface-hib.sh | |
| case $1/$2 in | |
| pre/hibernate) | |
| netctl stop $(netctl list |grep "wlp1s0-[a-zA-Z0-9]\+" -o) | |
| echo "Going to $2..." |
I hereby claim:
To claim this, I am signing this object:
| Byobu Commands | |
| ============== | |
| byobu Screen manager | |
| Level 0 Commands (Quick Start) | |
| ------------------------------ | |
| <F2> Create a new window |
| # -*- coding: utf-8 -*- | |
| """ | |
| A replacement transport for Python xmlrpc library. | |
| Usage: | |
| >>> import xmlrpclib | |
| >>> from transport import RequestsTransport | |
| >>> s = xmlrpclib.ServerProxy('http://yoursite.com/xmlrpc', transport=RequestsTransport()) | |
| >>> s.demo.sayHello() |
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v3.json", | |
| "width": 360, | |
| "data": { | |
| "url": "https://code.gisce.net/empowering.js/cch.json", | |
| "name": "source", | |
| "format": {"type": "json"} | |
| }, | |
| "selection": { | |
| "a": { |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
| // It uses zone.csv from https://timezonedb.com/download | |
| // A dummy `lol` zone has been attached to confirm that all requested zones are tested. | |
| for (var tz of ["Europe/Andorra", "Asia/Dubai", "Asia/Kabul", "America/Antigua", "America/Anguilla", "Europe/Tirane", "Asia/Yerevan", "Africa/Luanda", "Antarctica/McMurdo", "Antarctica/Casey", "Antarctica/Davis", "Antarctica/DumontDUrville", "Antarctica/Mawson", "Antarctica/Palmer", "Antarctica/Rothera", "Antarctica/Syowa", "Antarctica/Troll", "Antarctica/Vostok", "America/Argentina/Buenos_Aires", "America/Argentina/Cordoba", "America/Argentina/Salta", "America/Argentina/Jujuy", "America/Argentina/Tucuman", "America/Argentina/Catamarca", "America/Argentina/La_Rioja", "America/Argentina/San_Juan", "America/Argentina/Mendoza", "America/Argentina/San_Luis", "America/Argentina/Rio_Gallegos", "America/Argentina/Ushuaia", "Pacific/Pago_Pago", "Europe/Vienna", "Australia/Lord_Howe", "Antarctica/Macquarie", "Australia/Hobart", "Australia/Currie", "Australia/Melbourne", "Aus |