This file contains 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
''' | |
Raspberry Pi robot controller | |
''' | |
import RPi.GPIO as GPIO | |
from flask import Flask, render_template, request, jsonify | |
from time import sleep, time | |
import board | |
import busio | |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Tiny 4WD Web Control</title> | |
<link rel="stylesheet" href='../static/style.css'/> | |
</head> |
NewerOlder