Posts with «bug» label

Turtlebyte

Primary image

What does it do?

Autonomous robot pet

3/6/18- Just finished the front legs! Woohoo! I did several test runs on one of them, the most recent being documented in the video. But I screwed up the movement range in the test Arduino sketches, since the servos can no longer rotate fully. I hope I didn’t strain the servo too bad...

————————————————————

Cost to build

Embedded video

Finished project

Number

Time to build

Type

legs

URL to more information

Weight

read more

StickBug

Primary image

What does it do?

Avoids Danger!

This is my Lumi bug. I was poking aroung looking at my favorite robotsand I though hmmmI have all these parts already and should take advantage of Hurricane Sandy's time off.

 

Love this little guy!

I may improve him or shrink him in the future, for now he is complete.

This is also my first complete robot that recharges and has a tiny arse switch.

Cheers! 

Cost to build

$45,00

Embedded video

Finished project

Complete

Number

Time to build

1 hour

Type

legs

URL to more information

Weight

Arduino stops uploading

Hi,

Can anyone verify for me, that trying to upload a program to Arduino MEGA or maybe any Arduino, the upload stops if the code contains a constant string including !!! ?

like this small one will fail:

// Upload will never end
void setup() {
  String A = "!!!";
}

void loop() {
}

 

this one will finish:

// Upload will finish
void setup() {
String A = "aaa";
}

void loop() {
}

 

Let's Make Robots 05 Sep 22:54
arduino  avr  bug  programming