diff options
| -rw-r--r-- | I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate | bin | 37459 -> 38407 bytes | |||
| -rw-r--r-- | I2C/I2C.xcodeproj/xcuserdata/nsrddyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist | 16 | ||||
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | webconsole/index.html | 17 | ||||
| -rw-r--r-- | webconsole/styles.css | 8 |
5 files changed, 42 insertions, 2 deletions
diff --git a/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate b/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate Binary files differindex 6b96e8d..1bc2255 100644 --- a/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate +++ b/I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/I2C/I2C.xcodeproj/xcuserdata/nsrddyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/I2C/I2C.xcodeproj/xcuserdata/nsrddyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 214cbf9..cdf9fd2 100644 --- a/I2C/I2C.xcodeproj/xcuserdata/nsrddyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/I2C/I2C.xcodeproj/xcuserdata/nsrddyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -36,5 +36,21 @@ landmarkType = "3"> </BreakpointContent> </BreakpointProxy> + <BreakpointProxy + BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> + <BreakpointContent + uuid = "6C3E354D-791E-455C-800E-B7B183E2E52D" + shouldBeEnabled = "Yes" + ignoreCount = "0" + continueAfterRunningActions = "No" + filePath = "I2C/I2CApp.swift" + startingColumnNumber = "9223372036854775807" + endingColumnNumber = "9223372036854775807" + startingLineNumber = "8" + endingLineNumber = "8" + landmarkName = "body" + landmarkType = "24"> + </BreakpointContent> + </BreakpointProxy> </Breakpoints> </Bucket> @@ -1,2 +1,5 @@ # I2C A application to control an I2C display on RPI. +This application should represent a multi-use software with features ranging from a bus line analyser, bus delay analiser, an generative AI command line, weather reports, note's saving and much more. + +This is a starter project with the goal of expanded everything later on to let's say an e-ink display or small LCD.
\ No newline at end of file diff --git a/webconsole/index.html b/webconsole/index.html index 812011f..33b4ee9 100644 --- a/webconsole/index.html +++ b/webconsole/index.html @@ -1,12 +1,25 @@ <!DOCTYPE html> <html lang="en"> + <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CONSOLE</title> + <link rel="stylesheet" href="styles.css"> + <script src="main.js"></script> </head> + <body> - - + + <nav class="navigation"> + <p>I2C MODES</p> + <button>STATS</button> + <button>AI</button> + <button>TOOLS</button> + <button>MORE</button> + </nav> + + </body> + </html>
\ No newline at end of file diff --git a/webconsole/styles.css b/webconsole/styles.css new file mode 100644 index 0000000..a940b10 --- /dev/null +++ b/webconsole/styles.css @@ -0,0 +1,8 @@ +body { + background-color: teal; +} + +.navigation button { + background-color: none; + border: none; +} |
