I hereby claim:
- I am unicore32 on github.
- I am 64g806 (https://keybase.io/64g806) on keybase.
- I have a public key whose fingerprint is E11D 5D23 18A9 D0BC F6A3 F6F0 B054 DF71 0974 4895
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| import re | |
| import xlwt | |
| from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.webdriver.support.select import Select | |
| from bs4 import BeautifulSoup | |
| import pandas as pd | |
| import japandas as jpd |
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| from PIL import Image, ImageOps | |
| import numpy | |
| import serial | |
| class SM1_21: | |
| def __init__(self, port='/dev/ttys0', baud=115200): |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import serial | |
| # 各自適当なデバイスファイルに修正してください。 | |
| printer = serial.Serial('/dev/tty.SM1-21-SerialPortDevB', 115200) | |
| from tweepy.streaming import StreamListener, Stream | |
| from tweepy.auth import OAuthHandler |
| #include <ESP8266WiFi.h> | |
| #include <WiFiClient.h> | |
| #include <WiFiUDP.h> | |
| // Variable setting | |
| int DATA; | |
| char rcvBUFF_Serial[40]; | |
| char WiFibuff[10]; | |
| // UDP setting |
| #include <ESP8266WiFi.h> | |
| #include <WiFiClient.h> | |
| #include <WiFiUDP.h> | |
| // Variable settings | |
| char rcvBUFF_Serial[40]; | |
| // UDP settings | |
| WiFiUDP UDP; |
| -- Pin config | |
| gpio.mode(5, gpio.OUTPUT) -- GPIO14 -> OUTPUT | |
| -- Wi-Fi config | |
| wifi_cfg={} | |
| wifi_cfg.ssid="ESP8266_TEST01" | |
| wifi_cfg.pwd="password" | |
| wifi.ap.config(wifi_cfg) |
| // DEFINE port | |
| #define portTX PIN_B2 | |
| #define portRX PIN_B1 | |
| #define portENABLE PIN_B0 | |
| #define portBUSY PIN_A4 | |
| #define portRESET PIN_B3 | |
| #include <16f1827.h> | |
| #include <stdlib.h> | |
| #include <string.h> |