Skip to content

xiam/arduino_hexbug_spider

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hexbug spider library for Arduino

Hexbug Spider

This library uses an IR LED to send codes that can be understood by an Hexbug Spider.

If this is the first time you visit this repo I suggest you reading How to control your Hexbug Spider with Arduino.

Wiring everything together

To build this project you'll need:

  1. And Arduino board.
  2. An IR LED.
  3. A red LED (optional).
  4. A 200 to 1000 ohm resistor.

Wire one of the PWN pins of the Arduino board (this example uses pin 3) to the largest leg of the IR LED, the second leg goes to the longest leg of the red LED via the resistor, the second leg of the red LED goes to ground.

Should look like this:

arduino hexbug spider_bb

Here's an schematic view of the same setup:

arduino hexbug spider_schem

Minimal code example

  1. Install the IRDump.h library.
  2. Include the hexbug_spider.h file into your main Arduino code, for instance #include <hexbug_spider.h>.
// Channel the Hexbug Spider is listenning to ('A' or 'B'), must be defined
// before including hexbug-spider.h.
#define HEXBUG_SPIDER_CHANNEL 'A'

#include <hexbug_spider.h>

// Pin the IR LED is wired to. Must be a PWM pin.
#define PIN_IR_OUTPUT    3

void setup()
{
  Serial.begin(9600);
  Serial.println("Point your IR LED to an Hexbug spider.");

  hexbug_spider_setup_pin(PIN_IR_OUTPUT);
}

void loop()
{
  hexbug_spider_left();
  delay(100);
}

Here's a full example.

License

Copyright (c) 2014-today José Carlos Nieto, https://menteslibres.net/xiam

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Control your Hexbug Spider with Arduino.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages