Skip to content
forked from arduino/Arduino

open-source electronics prototyping platform

License

Notifications You must be signed in to change notification settings

yishii/Pellerduino

 
 

Repository files navigation

Pellerduino

  • Parallax Propeller IDE based on Arduino IDE

Both program onto E2PROM and just load in hubmemory and run are supported.

Status of this project

Creating underway.

Supported APIs

  • digitalWrite
  • digitalRead
  • pinMode
  • delay
  • delayMicroseconds

Sample Code

`

void setup()
{
    pinMode(20,OUTPUT);
}

void loop()
{
    digitalWrite(20,LOW);
    delay(500);
    digitalWrite(20,HIGH);
    delay(500);
}

`

About

open-source electronics prototyping platform

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 71.0%
  • C 13.3%
  • C++ 6.4%
  • Other 5.9%
  • Shell 1.8%
  • Objective-C 0.8%
  • Other 0.8%