{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Wprowadzenie do micropython na esp8266/esp8265\n", "\n", "https://towardsdatascience.com/micropython-on-esp-using-jupyter-6f366ff5ed9\n", "\n", "https://docs.micropython.org/en/latest/esp8266/tutorial/intro.html\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Instalacja firmware micropython" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Dokładny opis:\n", "\n", "• https://docs.micropython.org/en/latest/esp8266/tutorial/intro.html\n", "\n", "• http://www.wbudowane.pl/category/esp8266/\n", "\n", "• https://www.hackster.io/mjrobot/micropython-on-esp-using-jupyter-dfd1b3\n", "\n", "### Skrótowy opis:\n", "\n", "1. Należy zainstalować wybraną dystrybucję Python (polecam ANACONDA lub MINICONDA)\n", "\n", "2. Pobrać ostatnie firmware http://micropython.org/download#esp8266\n", "\n", "3. Uruchomić linię poleceń Python (np. Anaconda Prompt)\n", "\n", "• pip install esptool\n", "\n", "• esptool --port COM7 erase_flash\n", "\n", "• esptool --port COM7 --baud 460800 write_flash --flash_size=detect 0 esp8266-20180511-v1.9.4.bin\n", "\n", "4. Dla różnych mikroprocesorów i płytek istotne są przede wszystkim dwa parametry “--flash_mode=” oraz “--flash_size=” \n", "\n", "• Dla większości ESP8266 (np. WiFi Witty) “flash_mode” można pozostawić domyślnie i podać tylko : --flash_size=detect\n", "\n", "• Dla np. Wemos D1 mini lite (ESP8265): --flash_mode=dout --flash_size=detect\n", "\n", "• Dla ESP32 konieczna jest zmiana adresu z 0 na 0x1000\n", "\n", "### Korzystając z funkcji \"magic\" jądra micropython " ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "%capture [--quiet] [--QUIET] outputfilename\n", " records output to a file\n", "\n", "%comment\n", " print this into output\n", "\n", "%disconnect [--raw]\n", " disconnects from web/serial connection\n", "\n", "%esptool [--port PORT] {erase,esp32,esp8266} [binfile]\n", " commands for flashing your esp-device\n", "\n", "%fetchfile [--binary] [--print] [--quiet] [--QUIET]\n", " sourcefilename [destinationfilename]\n", " fetch and save a file from the device\n", "\n", "%lsmagic\n", " list magic commands\n", "\n", "%mpy-cross [--set-exe SET_EXE] [pyfile]\n", " cross-compile a .py file to a .mpy file\n", "\n", "%readbytes\n", " does serial.read_all()\n", "\n", "%readbytes [--binary]\n", " does serial.read_all()\n", "\n", "%rebootdevice\n", " reboots device\n", "\n", "%sendtofile [--append] [--mkdir] [--binary] [--execute]\n", " [--source [SOURCE]] [--quiet] [--QUIET]\n", " [destinationfilename]\n", " send cell contents or file/direcectory to the device\n", "\n", "%serialconnect [--raw] [--port PORT] [--baud BAUD] [--verbose]\n", " connects to a device over USB wire\n", "\n", "%socketconnect [--raw] ipnumber portnumber\n", " connects to a socket of a device over wifi\n", "\n", "%suppressendcode\n", " doesn't send x04 or wait to read after sending the contents of the cell\n", " (assists for debugging using %writebytes and %readbytes)\n", "\n", "%websocketconnect [--raw] [--password PASSWORD] [--verbose]\n", " [websocketurl]\n", " connects to the webREPL websocket of an ESP8266 over wifi\n", " websocketurl defaults to ws://192.168.4.1:8266 but be sure to be connected\n", "\n", "%writebytes [--binary] [--verbose] stringtosend\n", " does serial.write() of the python quoted string given\n", "\n", "%%writefile [--append] [--execute] destinationfilename\n", " write contents of cell to a file\n", "\n" ] } ], "source": [ "%lsmagic" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "usage: %esptool [--port PORT] {erase,esp32,esp8266} [binfile]\n", "\n", "positional arguments:\n", " {erase,esp32,esp8266}\n", " binfile\n", "\n", "optional arguments:\n", " --port PORT\n", "Please download the bin file from https://micropython.org/download/#" ] } ], "source": [ "%esptool" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[34mExecuting:\n", " esptool --port COM6 erase_flash\n", "\n", "\u001b[0mesptool.py v2.5.1\n", "Serial port COM6\n", "Connecting....\n", "\u001b[34m[Press the PRG button now if required]\n", "\u001b[0mDetecting chip type... ESP8266\n", "Chip is ESP8266EX\n", "Features: WiFi\n", "MAC: 5c:cf:7f:c1:7e:c8\n", "Uploading stub...\n", "Running stub...\n", "Stub running...\n", "Erasing flash (this may take a while)...\n", "Chip erase completed successfully in 8.6s\n", "Hard resetting via RTS pin...\n" ] } ], "source": [ "%esptool --port COM6 erase" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[34mExecuting:\n", " esptool --port COM6 --baud 460800 write_flash --flash_size=detect -fm dio 0 esp8266-20180511-v1.9.4.bin\n", "\n", "\u001b[0mesptool.py v2.5.1\n", "Serial port COM6\n", "Connecting....\n", "\u001b[34m[Press the PRG button now if required]\n", "\u001b[0mDetecting chip type... ESP8266\n", "Chip is ESP8266EX\n", "Features: WiFi\n", "MAC: 5c:cf:7f:c1:7e:c8\n", "Uploading stub...\n", "Running stub...\n", "Stub running...\n", "Changing baud rate to 460800\n", "Changed.\n", "Configuring flash size...\n", "Auto-detected Flash size: 4MB\n", "Flash params set to 0x0240\n", "Compressed 604872 bytes to 394893...\n", "Wrote 604872 bytes (394893 compressed) at 0x00000000 in 9.2 seconds (effective 523.7 kbit/s)...\n", "Hash of data verified.\n", "\n", "Leaving...\n", "Hard resetting via RTS pin...\n" ] } ], "source": [ "%esptool --port COM6 esp8266 esp8266-20180511-v1.9.4.bin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Pierwsze połączenie" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\u001b[34mConnecting to --port=COM6 --baud=115200 \u001b[0m\n", "\u001b[34mReady.\n", "\u001b[0m" ] } ], "source": [ "%serialconnect to --port=COM6 --baud=115200" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Welcome to MicroPython!\n", "\n", "For online docs please visit http://docs.micropython.org/en/latest/esp8266/ .\n", "For diagnostic information to include in bug reports execute 'import port_diag'.\n", "\n", "Basic WiFi configuration:\n", "\n", "import network\n", "sta_if = network.WLAN(network.STA_IF); sta_if.active(True)\n", "sta_if.scan() # Scan for available access points\n", "sta_if.connect(\"\", \"\") # Connect to an AP\n", "sta_if.isconnected() # Check for successful connection\n", "# Change name/password of ESP8266's AP:\n", "ap_if = network.WLAN(network.AP_IF)\n", "ap_if.config(essid=\"\", authmode=network.AUTH_WPA_WPA2_PSK, password=\"\")\n", "\n", "Control commands:\n", " CTRL-A -- on a blank line, enter raw REPL mode\n", " CTRL-B -- on a blank line, enter normal REPL mode\n", " CTRL-C -- interrupt a running program\n", " CTRL-D -- on a blank line, do a soft reset of the board\n", " CTRL-E -- on a blank line, enter paste mode\n", "\n", "For further help on a specific object, type help(obj)\n" ] } ], "source": [ "help()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "__main__ http_client_ssl sys urandom\n", "_boot http_server time ure\n", "_onewire http_server_ssl uasyncio/__init__ urequests\n", "_webrepl inisetup uasyncio/core urllib/urequest\n", "apa102 json ubinascii uselect\n", "array lwip ucollections usocket\n", "btree machine uctypes ussl\n", "builtins math uerrno ustruct\n", "dht micropython uhashlib utime\n", "ds18x20 neopixel uheapq utimeq\n", "errno network uio uzlib\n", "esp ntptime ujson webrepl\n", "example_pub_button onewire umqtt/robust webrepl_setup\n", "example_sub_led os umqtt/simple websocket\n", "flashbdev port_diag uos websocket_helper\n", "framebuf select upip\n", "gc socket upip_utarfile\n", "http_client ssd1306 upysh\n", "Plus any modules on the filesystem\n" ] } ], "source": [ "help('modules')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Polaczenie WiFi" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "import network" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "#6 ets_task(4020f474, 28, 3fffa018, 10)\r\n" ] } ], "source": [ "sta_if = network.WLAN(network.STA_IF); sta_if.active(True)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[(b'Redmi', b'x\\x02\\xf8\\xf7\\x0e\\xe4', 1, -47, 0, 0), (b'AGH-Events', b'\\x00#3,\\x13\\xe3', 1, -93, 0, 0), (b'AGH-WPA', b'\\x00#3,\\x13\\xe1', 1, -91, 0, 0), (b'pud', b'\\x00\\x18\\xe7\\xf5\\xcc\\xdc', 1, -91, 4, 0), (b'AGH-Guest', b'TJ\\x00\\xc7/0', 6, -89, 0, 0), (b'eduroam', b'TJ\\x00\\xc7/2', 6, -91, 0, 0), (b'AGH-WPA', b'TJ\\x00\\xc7/1', 6, -89, 0, 0), (b'AGH-Events', b'TJ\\x00\\xc7/3', 6, -90, 0, 0), (b'KRiM_G_2G', b'\\x18\\xd6\\xc7\\xab\\xf9y', 8, -88, 3, 0), (b'AGH-Guest', b'\\x00#3,\\x13\\xe0', 1, -92, 0, 0), (b'eduroam', b'\\x00#3,\\x13\\xe2', 1, -89, 0, 0)]\r\n" ] } ], "source": [ "print(sta_if.scan()) # Scan for available access points" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "sta_if.connect(\"Redmi\", \"\") # Connect to an AP" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "True\r\n" ] } ], "source": [ "print(sta_if.isconnected()) # Check for successful connection" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Polecenia sprzętowe" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Częstotliwość procesora i czas" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "import machine" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "80000000\r\n" ] } ], "source": [ "print(machine.freq()) # get the current frequency of the CPU" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "machine.freq(160000000) # set the CPU frequency to 160 MHz" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "160000000\r\n" ] } ], "source": [ "print(machine.freq()) # get the current frequency of the CPU" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ ".1\n" ] } ], "source": [ "import time\n", "\n", "time.sleep(1) # sleep for 1 second\n", "time.sleep_ms(500) # sleep for 500 milliseconds\n", "time.sleep_us(10) # sleep for 10 microseconds\n", "\n", "start = time.ticks_ms() # get millisecond counter\n", "time.sleep_us(1000)\n", "delta = time.ticks_diff(time.ticks_ms(), start) # compute time difference\n", "print(delta)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Wejścia i wyjścia cyfrowe" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "from machine import Pin\n", "\n", "pinR = Pin(15, Pin.OUT) # create output pin on GPIO0" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "." ] } ], "source": [ "pinR.on() # set pin to \"off\" (low) level\n", "time.sleep(1)\n", "pinR.off() # set pin to \"on\" (high) level\n", "time.sleep(1)\n", "pinR.value(1) # set pin to on/high\n", "time.sleep(1)\n", "pinR.value(0) # set pin to off/low" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "0\r\n" ] } ], "source": [ "p4 = Pin(4, Pin.IN) # create input pin on GPIO4\n", "print(p4.value()) # get value, 0 or 1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Wejście analogowe" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "adc = machine.ADC(0)" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "128\r\n" ] } ], "source": [ "a=adc.read()\n", "print(a)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Wejście 1-Wire (ds18x20)" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [], "source": [ "import onewire, ds18x20" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "found devices: [bytearray(b'(\\xff8it\\x16\\x03$')]\r\n" ] } ], "source": [ "# the device is on GPIO2\n", "dat = machine.Pin(2)\n", "\n", "# create the onewire object\n", "ds = ds18x20.DS18X20(onewire.OneWire(dat))\n", "\n", "# scan for devices on the bus\n", "roms = ds.scan()\n", "print('found devices:', roms)" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "10495\n", "0x28ff\n" ] } ], "source": [ "x=roms[0]\n", "num = x[0] << 8 | x[1] # \"<<\" operator równoważny mnożeniu x przez 2**y , \"|\" operator poziomu bitowego \"lub\"\n", "num = x[0] * 256 + x[1]\n", "print(num)\n", "print(hex(num)) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Jeżeli 0x28 to jest to DS18B20 (jeżeli byłby 0x10 to DS18S20)" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "ds.convert_temp()\n", "time.sleep_ms(750)" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "31.5625\r\n" ] } ], "source": [ "temp=ds.read_temp(roms[0])\n", "print(temp)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Wejście 1-Wire bez sterownika ds18x20" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [], "source": [ "import machine,onewire\n", "pin2 = machine.Pin(2)\n", "ow=onewire.OneWire(pin2)" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['__class__', '__dict__', '__init__', '__module__', '__qualname__', 'crc8', 'readbit', 'readbyte', 'readinto', 'reset', 'scan', 'write', 'writebit', 'writebyte', 'SKIP_ROM', 'select_rom', 'pin', 'SEARCH_ROM', 'MATCH_ROM', '_search_rom']\r\n" ] } ], "source": [ "print(dir(ow))" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "from micropython import const\n", "\n", "CONVERT = const(0x44)\n", "RD_SCRATCH = const(0xbe)\n", "WR_SCRATCH = const(0x4e)\n", "\n", "\n", "ow.reset(True)\n", "ow.select_rom(roms[0])\n", "#ow.writebyte(0x4e) # write on scratchPad\n", "config = b'\\x00\\x00\\x7f' #12bit\n", "#config = b'\\x00\\x00\\x1f' #9bit\n", "\n", "\n", "ds.write_scratch(roms[0],config)\n", "\n", "#ow.writebyte(ow.SKIP_ROM)\n", "ow.writebyte(CONVERT)" ] }, { "cell_type": "code", "execution_count": 35, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "bytearray(b'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00')\n", "bytearray(b'\\xf9\\x01\\x00\\x00\\x7f\\xffDD\\x14\\xff\\xff\\xff')\n" ] } ], "source": [ "ow.buf = bytearray(12)\n", "print(ow.buf)\n", "\n", "ow.reset(True)\n", "ow.select_rom(roms[0])\n", "ow.writebyte(RD_SCRATCH)\n", "ow.readinto(ow.buf)\n", "print(ow.buf)" ] }, { "cell_type": "code", "execution_count": 36, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "bytearray(b'\\xf9\\x01\\x00\\x00\\x7f\\xffDD\\x14\\xff\\xff\\xff')\n", "0xf9\n", "0x1\n", "0x0\n", "0x0\n", "0x7f\n", "0xff\n", "0x44\n", "0x44\n", "0x14\n", "0xff\n", "0xff\n", "0xff\n" ] } ], "source": [ "buf = ow.buf\n", "print(buf)\n", "for b in buf:\n", " print(hex(b))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Wyjaśnienie zapisu bitów i konwersji bitów np. https://www.thethingsnetwork.org/docs/devices/bytes.html" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "0\n", "31.5625\n" ] } ], "source": [ "t = buf[1] << 8 | buf[0]\n", "sign=t & 0x8000\n", "if sign: # sign bit set\n", " t = -((t ^ 0xffff) + 1)\n", "temp = t/16 \n", "\n", "print(sign)\n", "print(temp)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# MQTT" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": true }, "outputs": [], "source": [ "%serialconnect to --port=COM6 --baud=115200" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Podstawy" ] }, { "cell_type": "code", "execution_count": 38, "metadata": {}, "outputs": [], "source": [ "from umqtt.simple import MQTTClient" ] }, { "cell_type": "code", "execution_count": 39, "metadata": {}, "outputs": [], "source": [ "c = MQTTClient(client_id=\"isp_1\", server=\"broker.hivemq.com\", port=1883, keepalive=0) " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "scrolled": true }, "outputs": [], "source": [ "print(dir(c))" ] }, { "cell_type": "code", "execution_count": 40, "metadata": {}, "outputs": [], "source": [ "c.connect()\n" ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [], "source": [ "c.publish(b\"isp/topic/1\", \"on - retain\", retain=True)\n" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "b'on - retain'\n", "b'on - retain'\n", "\n" ] } ], "source": [ "def sub_cb(topic, msg):\n", " print(msg)\n", "\n", "c.set_callback(sub_cb)\n", "\n", "c.subscribe(b\"isp/topic/1\")\n", "\n", "print(c)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Przykład " ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['boot.py', 'do_connect.py']\r\n" ] } ], "source": [ "import os\n", "print(os.listdir())" ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Sent 10 lines (306 bytes) to do_connect.py.\n" ] } ], "source": [ "%sendtofile do_connect.py\n", "def do_connect():\n", " import network\n", " wlan = network.WLAN(network.STA_IF)\n", " wlan.active(True)\n", " if not wlan.isconnected():\n", " print('connecting to network...')\n", " wlan.connect('Redmi', '')\n", " while not wlan.isconnected():\n", " pass\n", " print('network config:', wlan.ifconfig())" ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Sent 58 lines (1154 bytes) to MQTT_Light.py.\n" ] } ], "source": [ "%sendtofile MQTT_Light.py\n", "\n", "from umqtt.simple import MQTTClient\n", "import machine\n", "import time\n", "\n", "#c = MQTTClient(client_id, server, port=0, user=None, password=None, keepalive=0, ssl=False, ssl_params={}):)\n", "c = MQTTClient(client_id=\"isp_1\", server=\"broker.hivemq.com\", port=1883, keepalive=0)\n", "\n", "pinR=machine.Pin(15,machine.Pin.OUT)\n", "pinG=machine.Pin(12,machine.Pin.OUT)\n", "pinB=machine.Pin(13,machine.Pin.OUT)\n", "\n", "pinButton=machine.Pin(4,machine.Pin.IN)\n", "\n", "def sub_cb(topic, msg):\n", " #print(msg)\n", " pinR.off()\n", " pinG.off()\n", " pinB.on()\n", "\n", " time.sleep_ms(200)\n", "\n", "c.set_callback(sub_cb)\n", "\n", "\n", "try:\n", " c.connect()\n", " c.subscribe(b\"isp/topic/3\")\n", " pinR.off()\n", " pinG.off()\n", " pinB.off()\n", "\n", " adc = machine.ADC(0)\n", " while True:\n", " c.check_msg()\n", " time.sleep_ms(200)\n", " a=adc.read()\n", " #print(a)\n", "\n", " c.publish(b\"isp/topic/1\", str(a))\n", "\n", " p=pinButton.value()\n", " print(p)\n", "\n", " if p == 0:\n", " c.publish(b\"isp/topic/2\", 'on')\n", " pinB.on()\n", " else:\n", " c.publish(b\"isp/topic/2\", 'off')\n", " pinB.off()\n", "\n", "\n", " if a<200:\n", " pinG.on()\n", " else:\n", " pinG.off()\n", "finally:\n", " c.disconnect()\n", " pinR.on()\n" ] }, { "cell_type": "code", "execution_count": 50, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Sent 3 lines (60 bytes) to main.py.\n" ] } ], "source": [ "%sendtofile main.py\n", "\n", "import do_connect\n", "do_connect.do_connect()\n", "import MQTT_Light\n" ] }, { "cell_type": "code", "execution_count": 54, "metadata": { "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "['boot.py', 'do_connect.py', 'MQTT_Light.py', 'main.py']\r\n" ] } ], "source": [ "print(os.listdir())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Do subskrypcji generowanych danych lub sterowania włączeniem diody należy wykorzystać wybranygo klienta MQTT:\n", " \n", " - Klient MQTT na stronie WWW: http://www.hivemq.com/demos/websocket-client/\n", " - Klient MQTT na Android: https://play.google.com/store/apps/details?id=snr.lab.iotmqttpanel.prod&hl=en\n", " - Klient MQTT w Python: https://www.hivemq.com/blog/mqtt-client-library-paho-python/\n", " - ...." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Powrót na stronę przedmiotu http://home.agh.edu.pl/~romanf/isp.html" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "MicroPython - USB", "language": "micropython", "name": "micropython" }, "language_info": { "codemirror_mode": "python", "file_extension": ".py", "mimetype": "text/python", "name": "micropython" } }, "nbformat": 4, "nbformat_minor": 2 }