Jump to content

DavidSu

Member
  • Posts

    3
  • Joined

  • Last visited

Personal Information

  • 3D printer
    Ultimaker S3

DavidSu's Achievements

0

Reputation

  1. Hi all, I want to pause the printer at a manually setting height of the build plate. When I use M0/M1, it indeed pauses but it goes down to the lowest height. Here is my code. M18 S5 M0 G1 Z100 G0 Z0.6 ;LAYER:2 Is there anyway to pause the printer at a manual setting height of the build plate? Thank you!
  2. All right! I fixed it. I just use the fetch module instead of request. And it works!
  3. Hi, I am trying to save the snapshot of camera in S3 from the URL to the local disk by using the request module of Node.js. Here is my code. camera_capture_URL = URL + ':8080/?action=snapshot'; request(camera_capture_URL, function (error, response, body) { if (!error && response.statusCode == 200) { console.log('content-type:', response.headers['content-type']); fs.writeFile('Test.jpg', body, function(err){ if (err) throw err console.log('File saved.') }) } }) I can receive the response successfully and the content-type is 'image/jpeg'. But after I save the "body" as a jpg file, I can't read it. So is there any operation that I need to do when saving the response?
×
×
  • Create New...