Yep I sure do
What issue?
Is this the hum staying on?
Or the hum not starting?
Or something else that Iâve forgotten?
I donât have either of these fonts, which makes it harder to reproduce the problem.
Does it matter which font you switch TO? Or just which font you switch FROM?
Can you reproduce it with the font you already sent? (Bal Venos)
Also, since youâre using WebUSB itâs hard to know when you did what. Combined with not knowing exactly what the problem is, itâs really difficult to know what to look for in the serial output.
Can I also see your config file?
when I use the config file from 5.9 in 6.0, the compile give me an error with theâŚ
#ifdef CONFIG_BOTTOM
SSD1306Template<64, uint32_t> display;
#endif
âŚsection you had me insert into my config file a hundred years ago (it seems). Deleting this portion of the config file results in a successful compile, but corruption of the OLED graphics.
The reversal of the trigger and mode buttons is on me. I forgot that I had accidentally wired those buttons in reverse, easily remedied within the config.
This can happen (if everything else seems to be correct) if the image is not 1bit-per-pixel, monochrome, black and white only image.
Try these known-good files to test:
https://www.dropbox.com/s/q7avh3a38otgqqo/OLEDTest.zip?dl=1
When you go with a standard display setup, images which are 64 pixels wide wonât work.
Also, the configuration in CONFIG_BOTTOM has changed a bit since last time.
You need a display controller now. At minimum, it should look like this:
#ifdef CONFIG_BOTTOM
StandardDisplayController<64, uint32_t> display_controller;
SSD1306Template<64, uint32_t> display(&display_controller);
#endif
For bullet counts, youâll want something like:
#ifdef CONFIG_BOTTOM
DisplayHelper<64, uint32_t,
BaseLayerOp<StandardDisplayController>,
ClearRectangleOp<10, 80, 8, 24>,
WriteBulletCountOp<10, 20, 5>
> display_controller;
SSD1306Template<64, uint32_t> display(&display_controller);
#endif
They had been working fine under 5.9. I had figured out all that 1 bit, black and white stuff and had been making my own animations. Was unaware of the controller stuff that had been added, so lâll try that next and report back.
so this superceeds previous version then? which I have as:
//Support for 128x64 OLED
#ifdef CONFIG_BOTTOM
SSD1306Template<128, uint64_t> display(0x3C);
#endif
or is the latter all thatâs needed for standard 128x32 screens?
Inserted the bullet count lines into the config, compiled and uploaded to the board successfully, and then it turned the blaster on automatically (as it does) but it only got a half second or so into the boot sound when it abruptly stopped. OLED remains corrupted and a random barrel light turns on. No function from either the trigger or the mode buttons.
Also, the computer now thinks that the USB device is unrecognizable, so I canât do a serial monitor to see whatâs happening. âThe last USB device malfunctioned and windows does not recognize itâ
The issue that the hum is staying on. As seen in the read out the pstoff is above the hum sound.
Are you talking about whatâs happening at 20:48:46.007?
Because it looks like there is a stab ignition happening there.
Is that the problem?
Could be that the rectangle clear is too big. Try this:
#ifdef CONFIG_BOTTOM
DisplayHelper<64, uint32_t,
BaseLayerOp<StandardDisplayController>,
ClearRectangleOp<10, 50, 8, 24>,
WriteBulletCountOp<10, 20, 5>
> display_controller;
SSD1306Template<64, uint32_t> display(&display_controller);
#endif
How do I fix the USB device malfunction problem? Is this a âpush the two buttonsâ situation?
Most likely, yes.
I canât test any more as my usb connector broke. Thanks for your efforts thus far.
I have been gesture spamming with proffieboard 1.5 and 3.7. No issues so far. Tip drag works with aux hold pointing down. Ill try color zoom today.
Thanks, the gesture âspamâ delays have been removed on the github version.
There is an issue with ColorZoom in Edit Mode for 1 button, it wonât allow you to revert with a long press currently so Iâll need to fix but it wonât be until next week due to the holiday.
yeah Im running your fork.