| GPIO | Function | Direction | Evidence |
|---|---|---|---|
| 0 | I2C SCL | Bidir (OD) | Wire.begin(sda=20, scl=0, freq=400000) in sub_42004146 |
| 1 | Button ADC (primary) | Analog In | analogRead(1) in sub_42006294 — 4-button resistor ladder |
| 2 | Button ADC (secondary) | Analog In | analogRead(2) fallback in sub_42006294 — 2 buttons |
| 3 | Power/Wake input | Digital In | digitalRead(3) in sub_4200D0B6, triggers power-on sequence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # --------------------------------------------------------------------------- | |
| # Ubuntu Phone - Sync Owncloud Contacts & Calendar Account | |
| # Carddav & Caldav. | |
| # Tested on : Ubuntu-touch vivid - ubuntu-touch/rc-proposed/bq-aquaris.en/vegetahd/ | |
| # Last edit : 2015/10/07. | |
| # Author : Romain Fluttaz, boTux.fr, <romain@botux.fr> | |
| # ============= [ Configuration ] ============= # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| html { | |
| width: 100%; | |
| height: 100%; | |
| } | |
| body { |