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 @@
36 landmarkType = "3"> 36 landmarkType = "3">
37 </BreakpointContent> 37 </BreakpointContent>
38 </BreakpointProxy> 38 </BreakpointProxy>
39 <BreakpointProxy
40 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
41 <BreakpointContent
42 uuid = "6C3E354D-791E-455C-800E-B7B183E2E52D"
43 shouldBeEnabled = "Yes"
44 ignoreCount = "0"
45 continueAfterRunningActions = "No"
46 filePath = "I2C/I2CApp.swift"
47 startingColumnNumber = "9223372036854775807"
48 endingColumnNumber = "9223372036854775807"
49 startingLineNumber = "8"
50 endingLineNumber = "8"
51 landmarkName = "body"
52 landmarkType = "24">
53 </BreakpointContent>
54 </BreakpointProxy>
39 </Breakpoints> 55 </Breakpoints>
40</Bucket> 56</Bucket>
diff --git a/README.md b/README.md
index 3c50b70..fa04791 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,5 @@
1# I2C 1# I2C
2A application to control an I2C display on RPI. 2A application to control an I2C display on RPI.
3This 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.
4
5This 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 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html lang="en"> 2<html lang="en">
3
3<head> 4<head>
4 <meta charset="UTF-8"> 5 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>CONSOLE</title> 7 <title>CONSOLE</title>
8 <link rel="stylesheet" href="styles.css">
9 <script src="main.js"></script>
7</head> 10</head>
11
8<body> 12<body>
9 13
10 14 <nav class="navigation">
15 <p>I2C MODES</p>
16 <button>STATS</button>
17 <button>AI</button>
18 <button>TOOLS</button>
19 <button>MORE</button>
20 </nav>
21
22
11</body> 23</body>
24
12</html> \ No newline at end of file 25</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 @@
1body {
2 background-color: teal;
3}
4
5.navigation button {
6 background-color: none;
7 border: none;
8}