Skip to content
#

Arduino

arduino logo

Arduino is an open source hardware and software company and maker community. Arduino started in the early 2000s. Popular with electronic makers, Arduino offers a lot of flexibility through an open source system.

Here are 14,444 public repositories matching this topic...

Marlin
MoshiBin
MoshiBin commented Dec 9, 2019

Description

Currently, setting coordinates in Z_STEPPER_ALIGN_XY that cannot be reached by the probe (due to a probe offset, for example) compiles successfully but fails during G32.

I'm suggesting adding a sanity check to make sure Z_STEPPER_ALIGN_XY is valid for the currently set bed size and probe offset.

gavan1
gavan1 commented Oct 20, 2018

I've looked at the Master robot example which helps adding and starting multiple robots.
in this code example the mqttbot is receiving correct callback from a MQTT server, I am just not sure how to call the Tello bot TakeOff method, drone.Start() is functioning.

Using the gobot frame work how do we have leverage MQTTbot events to control the TelloBot Driver?

Thanks


func main(){
ellemlabs
ellemlabs commented Dec 20, 2019

The following code compiles without problem:

func main() {
	ch := make(chan bool)
	js.Global().Call("setTimeout", js.FuncOf(func(this js.Value, args []js.Value) interface{} {
		println("sending")
		ch <- true
		println("sent")
		return nil
	}), 2000)
	println("waiting")
	<- ch
	println("done")
}

When executed in the browser, the following is outputted:

waiting
s
dsyleixa
dsyleixa commented Dec 24, 2019

a detailed documentation is missing about WebServer example "HelloServer.ino":
what is #include <ESPmDNS.h> for?
what is void handleRoot() for?
what is void handleNotFound() for?
what is server.on("/", handleRoot) for?
what is server.on("/inline", ) for?
what means: server.send(200, "text/plain", "this works as well");
(i.e., as well to what?)
what is server.onNotFound(handleNotFo

noweare1
noweare1 commented Aug 22, 2019

Bug Report

I don't know if this is a bug or I just don't have the upload stuff set up correctly

Current behavior

arduino-cli upload -p /dev/ttyACM0 --fqbn STM32:stm32:Nucleo_64 myfirst.ino

I am confused about how the upload command is supposed to work with my board. I am using an s

OpenMQTTGateway
Legion2
Legion2 commented Apr 21, 2019

I'm always frustrated when is see the code of OMG and can't read it because the indentation is not correct or variable names are only one letter.

Can you define a code style guide for this project and apply this style guide to all existing code.
This style guide should be defined in CONTRIBUTING.md and should have IDE support, so you can easily apply indentation rules to new code.

This wo

haesslo
haesslo commented Jun 24, 2019

It seems that this was changed from
bool globalInputHandler(const HomieNode& node, const String& property, const HomieRange& range, const String& value)
to:
bool globalInputHandler(const HomieNode& node, const HomieRange& range, const String& property, const String& value)

...took me a while of digging to find out... maybe to update the V3 documentation:
https://homieiot.github.io/homie-esp

ScruffR
ScruffR commented Jun 10, 2019

e.g. the demo implementations in this sub-directory
https://github.com/particle-iot/device-os/tree/v1.3.0-alpha.1/user/tests/app/ble
or some code snippets in the docs and tutorials still use #include "application.h".

Although Particle.h (formerly Spark.h) should have replaced application.h (as per #249) we keep finding internal/official code using application.h while we try to get t

Created by Massimo Banzi

Released 2003

Organization
arduino
Website
www.arduino.cc
Wikipedia
Wikipedia

Related Topics

raspberry-pi board sensor
You can’t perform that action at this time.