Results 38 issues of drf5n

Try this bit of code in `cardReader.py`: ... c = ['/dev/tty.usbserial'] for x in range(0, 255): c.append('COM' + str(x)) for x in c: try: self.__serialConn = serial.Serial(x) # opens the...

enhancement

https://github.com/Traumflug/Generation_7_Electronics/blob/master/arduino%20support/Gen7-dist/variants/gen7/pins_arduino.h#L37 and https://github.com/Traumflug/Generation_7_Electronics/blob/master/arduino%20support/Gen7-dist/variants/gen7/pins_arduino.h#L50 conflict with the diagram at https://github.com/Traumflug/Generation_7_Electronics/blob/master/arduino%20support/Gen7-dist/variants/gen7/pins_arduino.h#L73 Should the analog pins number upwards from digital 24 or downwards from Digital 31 like from http://sanguino.cc/hardware ?

The default PID parameters are assigned around https://github.com/Traumflug/Teacup_Firmware/blob/master/heater.c#L79 it might be nicer to move these out to config.h, or use some optional overrides like PID_I_PARAMETER, etc., in config.h. Also, it...

I was trying to make the Grbl CNC software (https://github.com/gnea/grbl-Mega) work with some steppers in a couple sketches like https://wokwi.com/projects/328566930816369236 or the Uno like https://wokwi.com/projects/328163210406396500 In the Description/README.md file on...

As is, the examples/adc_test errors on this line with an error like this: /Users/drf/Documents/Arduino/libraries/ADC/AnalogBufferDMA.cpp: In member function 'void AnalogBufferDMA::init(ADC*, int8_t)': /Users/drf/Documents/Arduino/libraries/ADC/AnalogBufferDMA.cpp:175:26: error: call to 'ADC::enableDMA' declared with attribute error: Use...

Near the line: https://github.com/jbkunst/highcharter/blob/0ed253196d33823e82fe4a73692450751534d81b/R/export_hc.R#L93 Could the code test if filename is `NULL` and otherwise return the string? if (! is.null(filename)) writeLines(jslns, filename) else return(jsnls) Note that the `stopifnot()` and `.js`...

enhancement

The main link for documentation for elapsedMillis seems to be https://github.com/pfeerick/elapsedMillis/wiki but it doesn't document the elapsedSeconds code available in the library. There is advice for installation on https://www.arduino.cc/reference/en/libraries/elapsedmillis/ to:...

It would be nice to have the code be in it's own fumik_rv9 subfolder like: fumik_rv9/fumik_rv9.ino so Arduino doesn't complain and move it. It would also be nice to see...

I was trying to use this file to join https://www2.census.gov/programs-surveys/popest/datasets/2010-2019/state/detail/ and https://covidtracking.com/data/api

On the ATMega2560 and ATMega32U, there's an Output Compare Modulator (OCM1C0A) that does this modulation in Hardware, however it is limited to just the Arduino Mega digital pin 13. If...