Andy A / Mbed 2 deprecated buttonTest

Dependencies:   USBDevice mbed

Fork of randomSearch by Andy A

Revision:
1:f2747e954f10
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/searchText.h	Thu Dec 17 21:21:06 2015 +0000
@@ -0,0 +1,21 @@
+
+// number of search terms
+const int searchStringCount = 6;
+// search terms. Should be url encoded (e.g. space becomes %20)
+const char *searches[] = {"hot%20cheese",
+                          "big%20show",
+                          "hot%20cheese",
+                          "magic%20mike%20xxl",
+                          "hot%20wet%20cheese",
+                          "hot%20wet%20-cheese"
+                          };
+// pause between searches in seconds
+const float delayBetweenSearches = 120;
+ 
+// start of the search string
+const char searchPrefix[] = "https://www.google.co.uk/search?q=";
+ 
+// end of the seach string (an image search with safe search switched off)
+const char searchSuffix[] = "&safe=off&tbm=isch";
+ 
+ 
\ No newline at end of file