My Line-us seems to be occasionally getting stuck when trying to put the pen down. It would appear that the cam has rotated to the correct position but the body of the robot doesn’t always seem to follow along. From what I can gather, either:
Thanks Rob! A quick test with my Line-us after applying some silicone lubricant and that seems to have done the trick. I’m using my Line-us programatically with JS so I’m definitely putting it through its paces compared to the average user.
Nice! Not sure whether you’re aware but we now have Websockets support (firmware 2.0.4, which is now the released version). Just update firmware from the app or send M997 if you’re interested. Only thing to be aware of is not to power off Line-us during the update.
Not yet - same commands as the socket interface and this should get you started…
<!DOCTYPE html>
<html lang="en">
<body>
<p id="output"></p>
<script>
var lineUsName = prompt("Please enter the name of your Line-us.\n\nIf you're not sure just click OK to accept the default name.", "line-us.local");
const socket = new WebSocket('ws://' + lineUsName);
socket.addEventListener('open', function (event) {
console.log(event);
socket.send("M122");
});
socket.addEventListener('message', messageHandler)
function messageHandler(event) {
console.log(event.data)
document.getElementById("output").innerHTML += (event.data + "<br>");
if(event.data.substring(0, 2) == "ok") {
socket.close();
}
}
</script>
</body>
</html>
Sorry to hear that. I’ll send you a new servo, and we also have a Nylon shim that may reduce the cam friction a bit that you can try. It’s not too difficult to replace - I’ll put together some instructions in time for when the servo arrives. Should I send to the same address as your original order?
HI, thank you very much for the support. But I think the problem is due to the intensive use of the line-us, two weeks ago I put for people experience it here in a bookstore, working everyday … so I assume this responsibility and I pay the servomotor …
Thank you very much. Yes, the address is the same.! Just some images
Nice drawing! Pen looks like it’s a bit low but very nice. Would love to hear more about the reaction to Line-us in the bookstore. I’ve sent you a replacement servo - as you say it’s probably because of heavy use but we’ll replace it for no charge as you haven’t had the machine for very long. I’ve also included some silicone grease and the Nylon piece - it should take 3-5 days to get to you so let me know when it arrives.
Hi
I am also facing this problem.It looks like that you are using the lineme frequently.That’s good.
I am posting the same problem then lets see if anyone gives us the right answer.
Thanks Regards TheWing.Pk