Tell us about yourself!
- JustABrokenRobot followed software channel
- JustABrokenRobot commented on ElettrizzatiD's instructable Blynk and Module ESP8266 With Arduino UNO
- JustABrokenRobot commented on HappyThingsMaker's instructable Premiere Pro Edit Dial Controller (Seek / Play / Pause) ($6 DIY)View Instructable »
Thank you a lot!! You are the best!!!Also one more question, can i use arduino nano instead of leonardo?
- JustABrokenRobot commented on HappyThingsMaker's instructable Premiere Pro Edit Dial Controller (Seek / Play / Pause) ($6 DIY)View Instructable »
Can this also work with Vegas Pro 14 or newer versions? Thnks!
- JustABrokenRobot followed robots, raspberry-pi, 3D-Printing and remote-control channel
- JustABrokenRobot commented on SteveRoy's instructable Arduino Temp/Humidity With LCD and Web InterfaceView Instructable »
I've done it by the way you are saying it at your instructable and i am still getting the same error message:Arduino: 1.8.2 (Windows 8.1), Board:"Arduino/Genuino Uno"In file included from C:\Program Files (x86)\Arduino\libraries\DHT\DHT_U.cpp:22:0:C:\Program Files (x86)\Arduino\libraries\DHT\DHT_U.h:25:29: fatal error: Adafruit_Sensor.h: No such file or directory #include <Adafruit_Sensor.h> ^compilation terminated.exit status 1i dont know if i'm the only one in this instructable with this problem
- JustABrokenRobot commented on SteveRoy's instructable Arduino Temp/Humidity With LCD and Web InterfaceView Instructable »
Yes, i have done this and by that way but i still get the same error message if you could help me i really appreciate that.and i also want to do this project without the E-THERNET.
- JustABrokenRobot commented on SteveRoy's instructable Arduino Temp/Humidity With LCD and Web InterfaceView Instructable »
HELP!!! problem with the library i think please someone help this is the error message:Arduino: 1.8.2 (Windows 8.1), board:"Arduino/Genuino Uno"In file included from C:\Program Files (x86)\Arduino\libraries\DHT-sensor-library-master\DHT_U.cpp:22:0:C:\Program Files (x86)\Arduino\libraries\DHT-sensor-library-master\DHT_U.h:25:29: fatal error: Adafruit_Sensor.h: No such file or directory #include <Adafruit_Sensor.h> ^compilation terminated.exit status 1
- JustABrokenRobot commented on JP Tavera's instructable ROBOT-DR
and also this remembers me the aliens from jimmy newtron
View Instructable »The best one to win the design for robotics chalenge you deserve it bro!!!
- JustABrokenRobot followed GreatScottLab
- JustABrokenRobot followed electronics, leds and apple channel
- JustABrokenRobot commented on sher10's instructable Gmail API Triggered FlagView Instructable »
It would be better if could stay straight still because if you are out and leave the PC opened you will see it from far that you have received a mail, this project(im not saying it is bad i really like it and well done to you because you think about it and you must know that i vote it for both challenges)but this project is only if you ARE at the computer so you can see it go up and down :) Good job again!!!
- JustABrokenRobot followed computers channel
- JustABrokenRobot followed speakers channel
- JustABrokenRobot completed the lessons Getting Started With Robots, Motors and Motion, Servo A-Go-Go!, Robots Class and 2 others in the class Robots Class
- JustABrokenRobot made the instructable Sensors
Here is the code that isn't available from the blog:#define BLYNK_PRINT Serial // Comment this out to disable prints and save space#include <ESP8266WiFi.h>#include <BlynkSimpleEsp8266.h>// You should get Auth Token in the Blynk App.// Go to the Project Settings (nut icon).char auth[] = “YourAuthToken”;// Hardware Serial on Mega, Leonardo, Micro…//#define EspSerial Serial// or Software Serial on Uno, Nano…#includeSoftwareSerial EspSerial(2, 3); // RX, TX// Your ESP8266 baud rate:#define ESP8266_BAUD 9600ESP8266 wifi(&EspSerial);void setup(){ // Set console baud rate Serial.begin(115200); delay(10); // Set ESP8266 baud rate EspSerial.begin(ESP8266_BAUD); delay(10); Blynk.begin(auth, wifi, “ssid”, “pass”);}void loop() { Blynk.…
see more »Here is the code that isn't available from the blog:#define BLYNK_PRINT Serial // Comment this out to disable prints and save space#include <ESP8266WiFi.h>#include <BlynkSimpleEsp8266.h>// You should get Auth Token in the Blynk App.// Go to the Project Settings (nut icon).char auth[] = “YourAuthToken”;// Hardware Serial on Mega, Leonardo, Micro…//#define EspSerial Serial// or Software Serial on Uno, Nano…#includeSoftwareSerial EspSerial(2, 3); // RX, TX// Your ESP8266 baud rate:#define ESP8266_BAUD 9600ESP8266 wifi(&EspSerial);void setup(){ // Set console baud rate Serial.begin(115200); delay(10); // Set ESP8266 baud rate EspSerial.begin(ESP8266_BAUD); delay(10); Blynk.begin(auth, wifi, “ssid”, “pass”);}void loop() { Blynk.run();}