Skip to main content

Understanding Mindflex

 

   

Mindflex is a toy by Mattel which apparently uses brain waves to steer a ball through an obstacle course. The brain waves are captured with the enclosed EEG headset, which allows the user to control an air stream with their concentration, thus lifting or lowering the delicate foam ball.




Making electronics project is too pretty simple with Us.


Join and Make with Us.

Comments

Popular posts from this blog

Controlling A Servo Motor Using MPU 6050 Sensor .

Hello guys, In this post we are going to tell you that how you can control servo motor using MPU Sensor. Please subscribe to our blog, so that you can't miss any update from us.Join us @Microelectronics. Code and circuit diagram is given post. Material required- 1-MPU Sensor 2-An Arduino 3-Servo motor  4-Some jumper wires Circuit diagram- Source code- // I2Cdev and MPU6050 must be installed as libraries, or else the .cpp/.h files // for both classes must be in the include path of your project #include "I2Cdev.h" #include "MPU6050_6Axis_MotionApps20.h" //#include "MPU6050.h" // not necessary if using MotionApps include file // Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation // is used in I2Cdev.h #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE     #include "Wire.h" #endif #include <Servo.h> Servo myservo;  // create servo object to control a servo   // class default I2C address is 0x...

How to use ADXL345 accelerometer with raspberry pi

 Hey,  Today's blog we are going to use ADXL345   Accelerometer with raspberry pi. WHAT YOU NEED : Raspberry pi 3 SD card (8gb+ recommend) Power supply ADXL345 accelerometer  Breadboard CIRCUIT :  PREPARING RASPBERRY PI : 1.  Before we can get our Raspberry Pi to retrieve data from our ADXL345 Accelerometer, there are a few changes we must make to the Pi’s configuration. Let’s first ensure that everything is up to date by running the following two commands. sudo apt-get update sudo apt-get upgrade 2.  Once the Raspberry Pi has finished updating, we will need to go ahead and launch the Raspberry configuration tool so that we can  enable I2C  on the Raspberry Pi. Run the following command to launch the  raspi configuration tool . sudo raspi-config 3.  On this screen, you need to head to the “ 5 Interfacing Options ” menu. You can navigate the  raspi-config  tools menus by using the  arrow keys . Use the  ENTER...

DIY Raspberry pi drone

  Hey, In today's blog we are going to make a drone using raspberry pi. STUFF YOU NEED : Drone frame Brushless motor×4 ESC × 4 Propeller × 4  Battery Raspberry pi 2 Battery monitor Multiwii Pi camera Wi fi key USB key SCHEMATIC: Raspberry pi with flight controller For install the two component at the same place we build a support who came on the top of the raspberry to place the multiwii (see picture). Install the raspberry with his support Put the multwii on the support with anti-vibration pad Conect the ESCs to the multiwii with the dedicated pins Next we will compile multiwii firmware into the board. To begin connect the multiwii board to your computer via USB To configure the multiwii: Download multiwii firmware from  https://code.google.com/p/multiwii/ Download arduino software from  https://www.arduino.cc/en/Main/Software Open arduino project "Multiwii.ino" Change arduino board in "Tools">"Board">"Arduino Mega 2560 or Mega ADK" Se...