Sunday, November 27, 2016

Brain Experiments on Robotics

This is a simple brain experiment that I have discovered when I was developing an android game app for my nephew EJ. The app is a game about smashing as many bugs as you can to score more points. The app, when installed on your tablets or phones, sounds off the word "HIT" every time a bug is killed. The word HIT is simply an indicator that tells you just smashed a bug.

Smash d' Bugs App

However, when you mentally substitute the word HIT with the word "HIP", after a few minutes of playing and hearing, eventually the brain will now "hear" HIP instead of HIT. The brain simply switched on from HIT to HIP.

Interestingly, after the switch, the most weirdest part of the experiment happens when - even you try to replace or bring back the word HIP to HIT mentally, your brain mentally would not allow you to do the switch anymore. Why?

Do we really store information in our brains or, just like a cd disc or a music box, is the brain simply made up of ridges (crests and troughs) that naturally produces the sensation of information? Or just like sponges and jellyfish, do they simply react to the ocean waves just like swaying branches and leaves that react to the force of the wind?  Remember these animals,  even though they don't have brains, hearts and blood, have survived before humans evolved. Does this mean we don't need our senses afterall to live thrive, and survive?

To find answers to these questions, let me discuss first the following theories based on I.M. :
  • The Xylophone Analogy
  • The Reversible Hello
  • The Caveman in the Box
  • The Animation Effect
  • The sponge/jellyfish biological structures
  • The Skin Network: The Cobweb Analogy
  • The Information Screen
  • Scriptional Jump
  • The ZiZo effect
  • Law of Second Option or The Flowchart Effect
Other homonyms will also be included in the experiment to analyze their effects on voice recognition and translation as inputs and outputs.

Here are some samples of sensory based experiments:













 ==================================================================
"Without the physical world,  Ideas will not exist."  ~ Joey Lawsin
==================================================================

NOTICE: Articles on this site are composed on random thoughts. The transcript may not be in its final form. It maybe edited, updated or even revised in the future based on the outcomes of  the author's experiments.

Public Domain Notice: Copyright (c) 2000. All rights reserved. This article is part of a book entitled Biotronics: The Silver Species. Copies are welcome to be shared or distributed publicly as long proper citations are observed. Please cite as follows: The Biotronics Project, Joey Lawsin, 1988, USA.

================================================================== 
The Homotronics® and Homodruinos® logos are registered trademarks.
Copyright Biotronics© Inc. iHackRobot®. All Rights Reserved.
Patent Pending. 2000 © ®
 ==================================================================

Thursday, November 24, 2016

Generic Robotics Apps

 
Arduino Robot controlled by Android Smartphone
by iHackRobot on Vimeo.






Arduino Sketch:
/* ===============================================================
      Project: Android Smartphone with Arduino Bluetooth
      Author: J. B. Wylzan 
      Website: http://www.ihackrobot.blogspot.com
      Abstract: How to control an led using smartphone
================================================================== */

#include <SoftwareSerial.h>
SoftwareSerial BTserial(2, 3); // RX | TX

 int ledPin = 12;
char data = 0;  

void setup()
{
     pinMode(ledPin, OUTPUT);
     BTserial.begin(9600);
     // Serial.begin(9600);
     // serial.println("Hello World");
}

void loop()
{
    if (BTserial.available())
    {
    data = BTserial.read();              //Read incoming value and store it into data
    if(data == '1')                            //when data is equal to 1
      digitalWrite(ledPin, HIGH);     // then LED is ON
    else if(data == '0')                     //when data is equal to 0
      digitalWrite(ledPin, LOW);     // then LED is OFF
       }
}


Another Version of the Generic Robotics App

Warning: : If an application is requesting permission to access any information of your phone or tablet, it is your sole own discretion if you provide permission or not. IHackRobot is not affiliated with the contents of the application or even its owner.

Disclaimer:  We shall not be liable for any loss or damage of whatever nature - direct, indirect, consequential, or otherwise - which may arise as a result of your use of any information on this website.



 ==================================================================
"Without the physical world,  Ideas will not exist."  ~ Joey Lawsin
==================================================================

NOTICE: Articles on this site are composed on random thoughts. The transcript may not be in its final form. It maybe edited, updated or even revised in the future based on the outcomes of  the author's experiments.

Public Domain Notice: Copyright (c) 2000. All rights reserved. This article is part of a book entitled Biotronics: The Silver Species. Copies are welcome to be shared or distributed publicly as long proper citations are observed. Please cite as follows: The Biotronics Project, Joey Lawsin, 1988, USA.

================================================================== 
The Homotronics® and Homodruinos® logos are registered trademarks.
Copyright Biotronics© Inc. iHackRobot®. All Rights Reserved.
Patent Pending. 2000 © ®
 ==================================================================