Search found 5 matches
- Sun Mar 29, 2020 9:29 pm
- Forum: Community Tutorials
- Topic: [Tutorial] How to get your NanoHatOLED to work
- Replies: 38
- Views: 17214
Re: [Tutorial] How to get your NanoHatOLED to work
why not use a systemd service? [Unit] Description=NanoHAT OLED [Service] Type=oneshot RemainAfterExit=yes ExecStart=/usr/local/bin/oled-start [Install] WantedBy=multi-user.target and oled-start: #!/bin/sh cd /root/NanoHatOLED ./NanoHatOLED The OLED screens does work with python3 (at least on my nano...
- Wed Jul 17, 2019 5:27 pm
- Forum: Community Tutorials
- Topic: [Tutorial] How to get your NanoHatOLED to work
- Replies: 38
- Views: 17214
Re: [Tutorial] How to get your NanoHatOLED to work
Your script is amazing to start with. I already modified it to change between hotspot and wifi client by pressing some buttons. After modifying some lines in main.c and some .py files NanoHatOLED now works with python 3.5 too. Edit: why did you put so much delay in your script -> time.sleep(x) ? als...
- Tue Jul 16, 2019 6:12 pm
- Forum: Community Tutorials
- Topic: [Tutorial] How to get your NanoHatOLED to work
- Replies: 38
- Views: 17214
Re: [Tutorial] How to get your NanoHatOLED to work
I need to get better in soldering... everything solved, hardware related not software.
- Mon Jul 15, 2019 10:55 pm
- Forum: Community Tutorials
- Topic: [Tutorial] How to get your NanoHatOLED to work
- Replies: 38
- Views: 17214
Re: [Tutorial] How to get your NanoHatOLED to work
i2cdetect -y 0 and i2cdetect -y 1 only show "--" and scanning takes ages. i2cdetect -y 2 is fast but empty as well. i2cdetect -y 3 shows this: root@NanoPi:~# sudo i2cdetect -y 3 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- -- --...
- Fri Jul 12, 2019 7:59 pm
- Forum: Community Tutorials
- Topic: [Tutorial] How to get your NanoHatOLED to work
- Replies: 38
- Views: 17214
Re: [Tutorial] How to get your NanoHatOLED to work
I tried to install this NanoHatOLED on my NanoPi Neo Air (DietPi v6.25.3) but I'm stuck somewhere. I used python3.5 instead of python2.7, had to change some lines in bakebit but the Service ./NanoHatOLED is running so I think the program itself works. But now my OLED screen stays black and I've got ...