Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
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: |
| import os | |
| import json | |
| import datetime | |
| from flask import Flask, url_for, redirect, \ | |
| render_template, session, request | |
| from flask.ext.sqlalchemy import SQLAlchemy | |
| from flask.ext.login import LoginManager, login_required, login_user, \ | |
| logout_user, current_user, UserMixin | |
| from requests_oauthlib import OAuth2Session |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| """ | |
| Sample code to test Arduino to Python serial communication | |
| """ | |
| import serial | |
| error_message="################ !!! Communication Error !!! ################\n" |