The plugin requires jQuery, it has been tested with version 2.2.4.
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>| #include <Servo.h> // include the Servo library | |
| // create the servo objects | |
| Servo leftMotor; | |
| Servo rightMotor; | |
| void setup() | |
| { | |
| leftMotor.attach(9); // attaches the servo on pin 9 to a servo object | |
| rightMotor.attach(10); // attaches the servo on pin 10 to a servo object |
http://www.wch.cn/download/CH341SER_MAC_ZIP.html
Once downloaded, unzip and install.
After it has installed successfully, open Terminal and run
` sudo nvram boot-args="kext-dev-mode=1"
| # Dolphin I/O iOS SDK | |
| ###### Partner Release 01/04/2014 | |
| --- | |
| Thank you for trying Dolphin I/O. This release is the **partner** release. The SDK is compiled and will only work with the application ids you have provided. | |
| If you run into any problem or bugs, we'd love to help. Please feel free to contact Max, <max@socialhappen.com>. | |
| --- |
| # Dolphin I/O iOS SDK | |
| ###### Closed Alpha Release 22/9/2013 | |
| --- | |
| Thank you for trying Dolphin I/O. This release is the **closed alpha** release, meaning things will probably break and implementation of the **DolphinSDK** will change in the very near future. | |
| The purpose of this release is for interested developers to try out how Dolphin I/O will work for their application. | |
| If you run into any problem or bugs, we'd love to help. Please feel free to contact Max, <max@socialhappen.com>. |
| #Add these lines to application.rb: | |
| config.generators.stylesheets = false | |
| config.generators.javascripts = false |
| RewriteEngine On | |
| RewriteCond %{HTTP_host} ^[^\./]+\.[^\./]+$ | |
| RewriteRule ^/(.*)$ ht tp://www.%{HTTP_host}/$1 [R=301,L] |
| def download_protected_file | |
| uri = "/secret_downloads/protected_file.zip" | |
| expire_time = Time.now.to_i + 600 | |
| key = Digest::MD5.base64digest("mpbod#{uri}#{expire_time}").gsub("=", "").gsub("+", "-").gsub("/", "_") | |
| redirect_to "#{uri}?st=#{key}&e=#{expire_time}" | |
| end |
| location /secret_downloads/ { | |
| ## Set the root to the PARENT directory of your secret downloads. | |
| root /home/mpbod/; | |
| ## This must match the URI part related to the MD5 hash and expiration time. | |
| secure_link $arg_st,$arg_e; # this must match the URI part related | |
| ## This is how the MD5 hash is built from a secret token, an URI and an | |
| ## expiration time. | |
| secure_link_md5 mpbod$uri$arg_e; # 'mpbod' is the secret token |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>DVTConsoleDebuggerInputTextColor</key> | |
| <string>0.7653 0.699234 0.758969 1</string> | |
| <key>DVTConsoleDebuggerInputTextFont</key> | |
| <string>DroidSansMono - 13.0</string> | |
| <key>DVTConsoleDebuggerOutputTextColor</key> | |
| <string>0.6431 0.5881 0.637824 1</string> |