ch55xduino icon indicating copy to clipboard operation
ch55xduino copied to clipboard

An Arduino-like programming API for the CH55X

Results 11 ch55xduino issues
Sort by recently updated
recently updated
newest added

After uploading a blank sketch to a CH546L using version 0.20.0, the device is not recognized via USB anymore and will not enter DFU mode (does not show as 4348:55e0...

Hello, ch55xduino/ch55x/libraries/Generic_Examples/examples/05.USB/HidKeyboard compiled to ch552 mcu HID working fine on windows and linux. it is not working on bios How to made work on bios screen? (by the way, it...

When running this code: ``` #define ledPin 30 #define delayTime 127 #define fadeMax 31 uint16_t fadeSquared; uint16_t fadeError=0; void setup() { pinMode(ledPin, OUTPUT); pinMode(34, OUTPUT); digitalWrite(34,LOW); } void loop() {...

Thank you for sharing your great project. Wireless communication could be very useful for Home Automation use case with very simple hardware. Most of electronics around house can be controlled...

Porting the TinyRF library (https://github.com/pouriap/TinyRF) would really open a lot of possibilities, as it would enable usb port communications to low power RF devices. The library is not too big...

I've added support for 6MHz clock. I've tested it for accuracy with my CH552G. Here is a loop function you can use to test: ``` void loop() { delay(1000); USBSerial_println(millis());...

This PR adds menu items to be able to select which hardware serial items (if any) to be included in the build. This is a potential solution for issue #113...

~~Test and merge https://github.com/DeqingSun/ch55xduino/pull/56, need to change register for CH559 and CH549~~ ~~Test and merge https://github.com/DeqingSun/ch55xduino/pull/50~~ ~~Test and merge keyboard and mouse complex https://github.com/betaEncoder/ch55xduino/tree/ch55xduino/ch55xduino/ch55x/libraries/Generic_Examples/examples/05.USB~~ ~~Add verbose control in wrapper scripts...

Thanks for the great work on this repository... :) Is it possible to make the base code size smaller. For example I compiled a default/empty sketch for ch552 using CDC....