This file contains hidden or 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
/** | |
* @file: servo control example | |
* | |
* @description | |
* drive forward, drive backward | |
* 1 servo, LiPo battery | |
* | |
* The minimum (backward) and maximum (forward) values | |
* will be different depending on your specific servo motor. | |
* Ideally, it should be between 1 and 2 milliseconds, but in practice, |
This file contains hidden or 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
from __future__ import print_function | |
import json | |
import urllib | |
import boto3 | |
import csv | |
import zipfile | |
print('Loading function') |
OlderNewer