A place users can post their projects. If you have a small project and would like your own dedicated place to post and have others chat about it then this is your spot.

User avatar
By Mikejstb
#20107 Well, I've been waiting for a certain 3d printer that I decided on to hit a certain price, and today it did so I pulled the trigger.
Look at this pretty enclosure in Thingaverse, I think I might have seen miker mention this a while back
http://www.thingiverse.com/thing:857858

I am all thumbs, left ones at that, sharpen it comes to cutting straight lines, drilling holes that line up. My projects always look like a middle school shop project that got a failing grade. So I'm hoping this world of 3d printing will be as fun as the world of ESPs.
User avatar
By Mikejstb
#20310 The 3D printer arrived today - my first print was an enclosure for the weather station -

IMG_2329.jpg


the hole for the display was only big enough to show about 1/3 of the display so I did some whittling with a sharp knife. Didn't get that exactly straight but it sure looks better than the previous box it was in. A little treatment with acetone will smooth the ridges out, and I need to figure out a different power switch scheme - there's just not much extra room in there.

All in all I'm very happy with the new toy.
You do not have the required permissions to view the files attached to this post.
User avatar
By jacko91
#56097 Hey there,
iam using an nodemcu to get some data from the dark sky api.

Code: Select all if (client.connect(servername, 80)) {
   Serial.println("connected");
   client.println("GET /forecast/key/49.8192,8.6449?exclude=hourly,flags,minutely,daily/units=si");
   client.println("Host:  darksky.net");
   client.println("Connection: close");
   client.println();
 }


it connects, but i get no return from the server.
any ideas?

Thx