caramoan tour package

caramoan tour package

Author Topic: E-gizmo Development Board (Arduino Codes)  (Read 2483 times)

Offline maldihtah13

  • Technical People
  • Nuclear Reactor
  • *****
  • Posts: 4674
  • Pogi/Ganda Points: 120
  • Gender: Female
  • Everyday is a learning process so try to learn ;D
    • Blogspot
E-gizmo Development Board (Arduino Codes)
« on: April 08, 2012, 11:03:12 AM »
Post here your Arduino codes for E-gizmo development board. This is a great way of sharing what you know for people who want to learn. TIA

Philippine Electronics Forum

E-gizmo Development Board (Arduino Codes)
« on: April 08, 2012, 11:03:12 AM »

Offline toasted siopao

  • She loves me, she loves me not, she loves me...
  • Global Moderator
  • Gas Turbine
  • *****
  • Posts: 2585
  • Pogi/Ganda Points: 107
  • Gender: Female
    • TeknoBlogger
Re: E-gizmo Development Board (Arduino Codes)
« Reply #1 on: April 08, 2012, 11:53:56 AM »
wala pa ako nung development board, hayaan mo pag meron na ako share ko rin hehee..

Philippine Electronics Forum

Re: E-gizmo Development Board (Arduino Codes)
« Reply #1 on: April 08, 2012, 11:53:56 AM »

Offline maldihtah13

  • Technical People
  • Nuclear Reactor
  • *****
  • Posts: 4674
  • Pogi/Ganda Points: 120
  • Gender: Female
  • Everyday is a learning process so try to learn ;D
    • Blogspot
Re: E-gizmo Development Board (Arduino Codes)
« Reply #2 on: April 08, 2012, 12:35:33 PM »
Here are my boards:

My special order (with male header)


My first board

Philippine Electronics Forum

Re: E-gizmo Development Board (Arduino Codes)
« Reply #2 on: April 08, 2012, 12:35:33 PM »

Offline akhen

  • Diesel Generator
  • *
  • Posts: 1294
  • Pogi/Ganda Points: 47
  • Gender: Female
  • "Learning is good but application is 100x better!"
Re: E-gizmo Development Board (Arduino Codes)
« Reply #3 on: April 09, 2012, 08:09:07 PM »
codes nito: http://www.electronicslab.ph/forum/index.php?topic=30337.100

gawin ko lang ulit di ko nasave while playing e... ;D

Philippine Electronics Forum

Re: E-gizmo Development Board (Arduino Codes)
« Reply #3 on: April 09, 2012, 08:09:07 PM »

Offline akhen

  • Diesel Generator
  • *
  • Posts: 1294
  • Pogi/Ganda Points: 47
  • Gender: Female
  • "Learning is good but application is 100x better!"
Re: E-gizmo Development Board (Arduino Codes)
« Reply #4 on: April 10, 2012, 10:44:26 AM »
as promised here's the code:

Code: [Select]
/*
  Blink3
  1. Turn ON LEDs connected to pins 6-13 one by one every 50ms
  2. Turn OFF all LEDs at the same time
  3. Turn ON LEDs from pin 13 to pin 6 one by one every 700ms
  4. Turn OFF LEDs from pin 6 to 13 one by one every 50ms

  akhen of electronicslab.ph    4/10/2012
 */

void setup() {               
  for(int ledPin=6; ledPin<=13; ledPin++)
  {
    pinMode(ledPin, OUTPUT);
  }
}

void loop() {
   
  for(int value=6; value<=13; value++)
  {
    digitalWrite(value, HIGH);
    delay(50);
  }
  delay(300);
 
  for(int value=13; value>=6; value--)
  {
    digitalWrite(value, LOW);
  }
  delay(700);
 
  for(int value=13; value>=6; value--)
  {
    digitalWrite(value, HIGH);
    delay(700);
  }
 
  for(int value=6; value<=13; value++)
  {
    digitalWrite(value, LOW);
    delay(50);
  }
  delay(2000);
}

here's how it works

Philippine Electronics Forum

Re: E-gizmo Development Board (Arduino Codes)
« Reply #4 on: April 10, 2012, 10:44:26 AM »

Offline maldihtah13

  • Technical People
  • Nuclear Reactor
  • *****
  • Posts: 4674
  • Pogi/Ganda Points: 120
  • Gender: Female
  • Everyday is a learning process so try to learn ;D
    • Blogspot
Re: E-gizmo Development Board (Arduino Codes)
« Reply #5 on: April 12, 2012, 12:55:01 AM »
It is my first time to use this board and I decided to use the LCD since I will use it often on developing codes and displaying data.

Here is the diagram used:




Here's the code:
Code: [Select]
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
  // Print a message to the LCD.
  lcd.print("electronicslabPH");
}
void loop() {
  // set the cursor to column 0, line 1
  // (note: line 1 is the second row, since counting begins with 0):
  lcd.setCursor(0, 1);
  // print the number of seconds since reset:
  lcd.print(millis()/1000);
}


Here's the output:


Offline ???

  • Solar Power Satellite
  • *****
  • Posts: 8366
  • Pogi/Ganda Points: 433
Re: E-gizmo Development Board (Arduino Codes)
« Reply #6 on: April 12, 2012, 01:07:02 AM »
Pamarka lang mga master.
*http://www.elab.ph/forum/index.php?topic=36002.0
*http://www.elab.ph/forum/index.php?topic=35611.0
*http://www.elab.ph/forum/index.php?topic=37150.0
*http://www.elab.ph/forum/index.php?topic=29963.0

Offline PlCUSER

  • Diesel Generator
  • *
  • Posts: 1928
  • Pogi/Ganda Points: 154
Re: E-gizmo Development Board (Arduino Codes)
« Reply #7 on: April 12, 2012, 02:13:32 AM »


Here's the output:

bakit ung actual..., amm parang ang layo sa diagram. ang gulo. ;D ;D ;D
jowk. jowk. jowk. lng po master maldihtah13. point for your thread. ;D ;D ;D

Offline Mayor Johnaray

  • Gas Turbine
  • **
  • Posts: 2092
  • Pogi/Ganda Points: 238
Re: E-gizmo Development Board (Arduino Codes)
« Reply #8 on: May 23, 2012, 06:39:49 PM »
UP


Offline ultrasonic™

  • Solar Power Satellite
  • *****
  • Posts: 7055
  • Pogi/Ganda Points: 924
  • Gender: Female
  • never be harsh coz everythng is fine
Re: E-gizmo Development Board (Arduino Codes)
« Reply #9 on: May 23, 2012, 06:42:26 PM »


sana  may  maawaing  magtapon  sa  akin nito ;D
kahit sinalvage na ang board  ;D
im always walking on the rain so that no one could see me crying




TV SERVICE MODE - http://www.elab.ph/forum/index.php?topic=2267.0;topicseen

Offline Mayor Johnaray

  • Gas Turbine
  • **
  • Posts: 2092
  • Pogi/Ganda Points: 238
Re: E-gizmo Development Board (Arduino Codes)
« Reply #10 on: May 23, 2012, 07:16:48 PM »
Nagawa ko din yung sample ni Sis Akhen

pero di ko mapagana yung sample ni Sis maldihtah13


Offline JojoD818

  • Size C Battery
  • *****
  • Posts: 242
  • Pogi/Ganda Points: 23
  • Rest when you're dead...
    • JD Labs Projects
Re: E-gizmo Development Board (Arduino Codes)
« Reply #11 on: May 23, 2012, 11:13:53 PM »
wow ganda ng board!

punta ako bukas eGizmo to get my very first Gizduino.... yun lang muna to get my feet wet into MCU... pag na intindihan ko na tsaka ako kukuha niyan... ;D

Offline ΔЅịMø

  • Gas Turbine
  • **
  • Posts: 2903
  • Pogi/Ganda Points: 140
  • Gender: Male
  • "Live Curious"
Re: E-gizmo Development Board (Arduino Codes)
« Reply #12 on: May 23, 2012, 11:34:29 PM »
Nagawa ko din yung sample ni Sis Akhen

pero di ko mapagana yung sample ni Sis maldihtah13



Yung pag-connect nyo sir supremo sa mga pins to lcd sir?
Computer Engineering National Organization registration thread


Offline JojoD818

  • Size C Battery
  • *****
  • Posts: 242
  • Pogi/Ganda Points: 23
  • Rest when you're dead...
    • JD Labs Projects
Re: E-gizmo Development Board (Arduino Codes)
« Reply #13 on: May 24, 2012, 08:50:35 PM »
wow ganda ng board!

punta ako bukas eGizmo to get my very first Gizduino.... yun lang muna to get my feet wet into MCU... pag na intindihan ko na tsaka ako kukuha niyan... ;D


Hindi ko na napigilan, also got the development boards along with a Gizduino and a repaired stepper motor driver board this afternoon...





I'm not yet sure what to make of it hahaha but it was highly recommended by the staff at eGizmo, besides ang pogi ng board so I took it home with me...



I hope the Arduino masters here give more support for those starting out like me...  :)


Offline ΔЅịMø

  • Gas Turbine
  • **
  • Posts: 2903
  • Pogi/Ganda Points: 140
  • Gender: Male
  • "Live Curious"
Re: E-gizmo Development Board (Arduino Codes)
« Reply #14 on: May 24, 2012, 08:52:24 PM »
Go sir! ;D Ang pogi nga ng mga boards. :D :D

Magkano lahat sir?
Computer Engineering National Organization registration thread


Offline JojoD818

  • Size C Battery
  • *****
  • Posts: 242
  • Pogi/Ganda Points: 23
  • Rest when you're dead...
    • JD Labs Projects
Re: E-gizmo Development Board (Arduino Codes)
« Reply #15 on: May 24, 2012, 09:00:23 PM »
Go sir! ;D Ang pogi nga ng mga boards. :D :D

Magkano lahat sir?


Hhmmm... I didn't track each of them individually sir eh... ::)

Turo ako ng turo kanina hihihi!  :D



EDIT: Yun Gizduino 328 is Php662 and Php1,885 naman yun Universal training board sir...  :)

Offline JojoD818

  • Size C Battery
  • *****
  • Posts: 242
  • Pogi/Ganda Points: 23
  • Rest when you're dead...
    • JD Labs Projects
Re: E-gizmo Development Board (Arduino Codes)
« Reply #16 on: May 24, 2012, 09:28:25 PM »
Bought kids school supplies this afternoon so I got my dev board a case...




and it fits nicely... drill ko na lang yun standoffs later...



 :)

Offline zrehtiek/keitherz

  • Lead Acid Battery
  • *******
  • Posts: 772
  • Pogi/Ganda Points: 45
  • Gender: Male
  • PhilRoboKit Anito
Re: E-gizmo Development Board (Arduino Codes)
« Reply #17 on: May 24, 2012, 09:36:53 PM »
wapak! ESD alert!!!

Offline JojoD818

  • Size C Battery
  • *****
  • Posts: 242
  • Pogi/Ganda Points: 23
  • Rest when you're dead...
    • JD Labs Projects
Re: E-gizmo Development Board (Arduino Codes)
« Reply #18 on: May 24, 2012, 09:45:20 PM »
wapak! ESD alert!!!


salamat, but it was taken cared of sir before hand.

Offline zrehtiek/keitherz

  • Lead Acid Battery
  • *******
  • Posts: 772
  • Pogi/Ganda Points: 45
  • Gender: Male
  • PhilRoboKit Anito
Re: E-gizmo Development Board (Arduino Codes)
« Reply #19 on: May 24, 2012, 09:50:15 PM »
anong linagay mo sa case?

Philippine Electronics Forum

Re: E-gizmo Development Board (Arduino Codes)
« Reply #19 on: May 24, 2012, 09:50:15 PM »

 

Privacy Policy

Contact Us: elabph@yahoo.com