Skip to content

LED Globe

Advertising
Advertising
?
Creation quality: 5.0/5 (1 vote)
Evaluation of members on the printability, utility, level of detail, etc.

  • 1.5k views
  • 2 likes
  • 35 downloads

License
3D design format
STL Folder details Close
  • led_globe.stl

Learn more about the formats

3D model size X 50 Γ— Y 50 Γ— Z 51 mm
Publication date 2021-09-15 at 23:42
?
Published to Thingiverse on: 2014-02-06 at 21:33
Design number 520840

3D printer file info

3D model description

A small 5 cm hollow sphere which has a base and a hole for a 5mm LED.

I used mine with an RGB led and Arduino, and made it into a Pomodoro timer. It starts green, fades to red over 25 minutes, then for 4 minutes glows blue, signalling a stretch break.

Detailed instructions for creating the Pomodoro timer are below.

3D printing settings

Print out the Sphere in a neutral or white colour. Insert 5mm LED of your choice into the bottom and power it however you like!

If you want to build the Pomodoro timer which I did, follow this instructable for building the RGB LED circuit for the Arduino, which is what I used: http://www.instructables.com/id/Fading-RGB-LED-Arduino/. It give clear steps and materials required.

The code I wrote for the Pomodoro specific logic is here:

  #define
 RED 9  
  #define
 GREEN 10  
  #define
 BLUE 11  

void setup() {  

  pinMode(GREEN, OUTPUT);  
  pinMode(BLUE, OUTPUT);  
  pinMode(RED, OUTPUT);  
  digitalWrite(GREEN, HIGH);  
  digitalWrite(BLUE, LOW);  
  digitalWrite(RED, LOW);  
}  

int redVal;  
int blueVal;  
int greenVal;  
int val;  

void loop() {  

  // 25 minute green to red   

  int redVal = 0;  
  int blueVal = 0;  
  int greenVal = 255;  
  for( int i = 0 ; i < 255 ; i += 1 ){  
    greenVal -= 1;  
    redVal += 1;  
    analogWrite( GREEN, greenVal );  
    analogWrite( RED, redVal );  

    delay( 5882 );  
  }  


  // blink red   

  for ( int i = 0; i < 60; i++ ) {  
    redVal = ( redVal == 0 ) ? 255 : 0;  
    analogWrite( RED, redVal );  

    delay ( 500 );  
  }  


  // 4 minute solid blue  

  analogWrite( RED, 0 );  
  analogWrite( BLUE, 255 );  
  delay( 240000 );  


  // blink blue   

  for ( int i = 0; i < 60; i++ ) {  
    val = ( val == 0 ) ? 255 : 0;  
    analogWrite( BLUE, val );  

    delay ( 500 );  
  }  

  analogWrite ( BLUE, 0 );  

}
Advertising


Issue with this design? Report a problem.

Would you like to support Cults?

You like Cults and you want to help us continue the adventure independently? Please note that we are a small team of 3 people, therefore it is very simple to support us to maintain the activity and create future developments. Here are 4 solutions accessible to all:

  • ADVERTISING: Disable your banner blocker (AdBlock, …) and click on our banner ads.

  • AFFILIATION: Make your purchases online by clicking on our affiliate links here Amazon.

  • DONATE: If you want, you can make a donation via Ko-Fi πŸ’œ.

  • WORD OF MOUTH: Invite your friends to come, discover the platform and the magnificent 3D files shared by the community!


Sharing and downloading on Cults3D guarantees that designs remain in makers community hands! And not in the hands of the 3D printing or software giants who own the competing platforms and exploit the designs for their own commercial interests.

Cults3D is an independent, self-financed site that is not accountable to any investor or brand. Almost all of the site's revenues are paid back to the platform's makers. The content published on the site serves only the interests of its authors and not those of 3D printer brands who also wish to control the 3D modeling market.

100% secure payment by credit card, PayPal, Apple Pay, Google Pay, etc.
View all payment options.