summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdellah El Morabit <nsrddyn@gmail.com>2024-11-16 00:08:34 +0100
committerAbdellah El Morabit <nsrddyn@gmail.com>2024-11-16 00:08:34 +0100
commit3714c08a1233884696e0f5483d73efa890e1a5a1 (patch)
treeee14f6cba33139eec3864567807cdbecd8990aa9
parent5588a6c6b4d944e0342d5bd3ea54c3dda6aec4d4 (diff)
working on the general app + updates to the read me file, also fixed the i2c display not working properly, still wanting to optimize it though for text overflow
-rw-r--r--I2C/I2C.xcodeproj/project.xcworkspace/xcuserdata/nsrddyn.xcuserdatad/UserInterfaceState.xcuserstatebin37459 -> 38407 bytes
-rw-r--r--I2C/I2C.xcodeproj/xcuserdata/nsrddyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist16
-rw-r--r--README.md3
-rw-r--r--webconsole/index.html17
-rw-r--r--webconsole/styles.css8
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
index 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
Binary files differ
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>
diff --git a/README.md b/README.md
index 3c50b70..fa04791 100644
--- a/README.md
+++ b/README.md
@@ -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;
+}