Jeff Malins
Jeff Malins
Based on my research, it looks like the HTML5 Full Screen API is required to fix this on Android (more info [here](https://developers.google.com/web/fundamentals/native-hardware/fullscreen/)). Seems straightforward to implement using this library: https://github.com/sindresorhus/screenfull.js...
I just committed a change to enable debugging to the serial monitor. Please change line 32 of `BattleBot-Control.ino` from: ``` #define PRINT_TO_SERIAL_MONITOR false ``` to this: ``` #define PRINT_TO_SERIAL_MONITOR true...
This change was already planned for the next revision. The mDNS and SSID names will also be configurable from the web interface.
I was encountering the same error. It actually looks like it is tied to this change (line 52): https://github.com/aws/jsii/pull/3694/files#diff-8c3c3ced74aeb038ac90c893f7998ce488d3771561a5d253376f9177bcef707c The arguments for the python script are not being marshaled correctly....
To clarify, the issues are in a combination of JSII (argument marshaling) and projen (syntax of the `projen` app that is installed in the venv). At this point, I am...
`jsii` 1.69.0 with the fix above landed. Unfortunately, the default `projen` script is still has problems. It appears that the JSII tarball included with the python package is missing `+x`...
I agree, this does seem to be the issue. Is the best solution to add tar/untar to `build/build-workflow.ts`? This is likely the simplest solution, but it would be a behavior...
Explicitly setting permissions on just the bin scripts is appealing. It will fix the problem at hand and be simple to implement. To me, the main argument against that approach...
Success! This now works: ```sh ~> cd my-project ~/my-project> npx projen new awscdk-app-py ... #install output here ~/my-project> source .env/bin/activate.fish (.env) ~/my-project> projen --version 0.62.28 ``` Python users can now...
Not handy, unfortunately.